-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
88 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
(lang dune 3.0) | ||
(name ounit) | ||
(explicit_js_mode) | ||
(formatting (enabled_for dune)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(tests | ||
(names test_list test_stack) | ||
(package ounit2) | ||
(libraries ounit2)) | ||
(names test_list test_stack) | ||
(package ounit2) | ||
(libraries ounit2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(documentation | ||
(package ounit) | ||
(mld_files index)) | ||
(package ounit) | ||
(mld_files index)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(documentation | ||
(package ounit-lwt) | ||
(mld_files index)) | ||
(package ounit-lwt) | ||
(mld_files index)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(library | ||
(name oUnitLwt) | ||
(public_name ounit2-lwt) | ||
(libraries lwt lwt.unix ounit2.advanced)) | ||
(name oUnitLwt) | ||
(public_name ounit2-lwt) | ||
(libraries lwt lwt.unix ounit2.advanced)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
(rule | ||
(target oUnitLoggerHTMLData.ml) | ||
(deps (:data_gen ../../../tools/data_gen/data_gen.exe) oUnit.css oUnit.js) | ||
(action (run %{data_gen}))) | ||
(target oUnitLoggerHTMLData.ml) | ||
(deps | ||
(:data_gen ../../../tools/data_gen/data_gen.exe) | ||
oUnit.css | ||
oUnit.js) | ||
(action | ||
(run %{data_gen}))) | ||
|
||
(library | ||
(name oUnitAdvanced) | ||
(public_name ounit2.advanced) | ||
(wrapped false) | ||
(libraries unix seq stdlib-shims)) | ||
(name oUnitAdvanced) | ||
(public_name ounit2.advanced) | ||
(wrapped false) | ||
(libraries unix seq stdlib-shims)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
(library | ||
(name oUnit) | ||
(public_name ounit2) | ||
(wrapped false) | ||
(libraries unix seq ounit2.advanced)) | ||
(name oUnit) | ||
(public_name ounit2) | ||
(wrapped false) | ||
(libraries unix seq ounit2.advanced)) | ||
|
||
(documentation | ||
(package ounit2) | ||
(mld_files index)) | ||
(package ounit2) | ||
(mld_files index)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
(library | ||
(name oUnitThreads) | ||
(public_name ounit2.threads) | ||
(private_modules oUnitRunnerThreads) | ||
(libraries threads ounit2)) | ||
(name oUnitThreads) | ||
(public_name ounit2.threads) | ||
(private_modules oUnitRunnerThreads) | ||
(libraries threads ounit2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
(executable | ||
(name data_gen)) | ||
(name data_gen)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
(library | ||
(name testcommon) | ||
(modules testCommonRunner segfault) | ||
(foreign_stubs | ||
(names segfault) | ||
(language c)) | ||
(wrapped false) | ||
(libraries ounit2 ounit2.advanced)) | ||
(name testcommon) | ||
(modules testCommonRunner segfault) | ||
(foreign_stubs | ||
(names segfault) | ||
(language c)) | ||
(wrapped false) | ||
(libraries ounit2 ounit2.advanced)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
(test | ||
(name test) | ||
(libraries ounit2 ounit2.advanced str libtest) | ||
(package ounit2) | ||
(deps | ||
test.exe | ||
(:fakeHTML fakeHTML/fakeHTML.exe) | ||
(:fakeRunner fakeRunner/fakeRunner.exe) | ||
(:fakeShared fakeShared/fakeShared.exe) | ||
(:fakeBadFinaliser fakeBadFinaliser/fakeBadFinaliser.exe) | ||
JUnit.xsd) | ||
(action | ||
(run %{test} -fakeHTML %{fakeHTML} -fakeRunner %{fakeRunner} | ||
-fakeShared %{fakeShared} -fakeBadFinaliser %{fakeBadFinaliser}))) | ||
(name test) | ||
(libraries ounit2 ounit2.advanced str libtest) | ||
(package ounit2) | ||
(deps | ||
test.exe | ||
(:fakeHTML fakeHTML/fakeHTML.exe) | ||
(:fakeRunner fakeRunner/fakeRunner.exe) | ||
(:fakeShared fakeShared/fakeShared.exe) | ||
(:fakeBadFinaliser fakeBadFinaliser/fakeBadFinaliser.exe) | ||
JUnit.xsd) | ||
(action | ||
(run | ||
%{test} | ||
-fakeHTML | ||
%{fakeHTML} | ||
-fakeRunner | ||
%{fakeRunner} | ||
-fakeShared | ||
%{fakeShared} | ||
-fakeBadFinaliser | ||
%{fakeBadFinaliser}))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(executable | ||
(name fakeBadFinaliser) | ||
(libraries ounit2 testcommon)) | ||
(name fakeBadFinaliser) | ||
(libraries ounit2 testcommon)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(executable | ||
(name fakeHTML) | ||
(libraries ounit2)) | ||
(name fakeHTML) | ||
(libraries ounit2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(executable | ||
(name fakeRunner) | ||
(libraries ounit2 ounit2.threads testcommon)) | ||
(name fakeRunner) | ||
(libraries ounit2 ounit2.threads testcommon)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(executable | ||
(name fakeShared) | ||
(libraries ounit2 ounit2.threads)) | ||
(name fakeShared) | ||
(libraries ounit2 ounit2.threads)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(library | ||
(name libtest) | ||
(wrapped false) | ||
(libraries ounit2 ounit2.advanced testcommon)) | ||
(name libtest) | ||
(wrapped false) | ||
(libraries ounit2 ounit2.advanced testcommon)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
(test | ||
(name test) | ||
(package ounit2-lwt) | ||
(libraries ounit2 ounit2-lwt testcommon)) | ||
(name test) | ||
(package ounit2-lwt) | ||
(libraries ounit2 ounit2-lwt testcommon)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
(test | ||
(name testRunnerProcesses) | ||
(package ounit2-lwt) | ||
(deps test.txt) | ||
(libraries ounit2 lwt lwt.unix ounit2-lwt) | ||
(action (run %{test} -runner processes))) | ||
(name testRunnerProcesses) | ||
(package ounit2-lwt) | ||
(deps test.txt) | ||
(libraries ounit2 lwt lwt.unix ounit2-lwt) | ||
(action | ||
(run %{test} -runner processes))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
(test | ||
(name test_byte) | ||
(libraries ounit2 ounit2.advanced str libtest) | ||
(package ounit2) | ||
(modes byte) | ||
(deps test_byte.bc) | ||
(action (run %{test}))) | ||
|
||
(name test_byte) | ||
(libraries ounit2 ounit2.advanced str libtest) | ||
(package ounit2) | ||
(modes byte) | ||
(deps test_byte.bc) | ||
(action | ||
(run %{test}))) |