-
Notifications
You must be signed in to change notification settings - Fork 192
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
1 changed file
with
42 additions
and
43 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,73 +1,72 @@ | ||
(tests | ||
(names cat) | ||
(modes | ||
js | ||
wasm) | ||
(modes js wasm) | ||
(action | ||
(pipe-stdout | ||
(run printf "echo ☠") | ||
(run node %{test})))) | ||
(run printf "echo ☠") | ||
(run node %{test})))) | ||
|
||
(tests | ||
(names cat_nat) | ||
(modes | ||
(best exe)) | ||
(action | ||
(pipe-stdout | ||
(run printf "echo ☠") | ||
(run %{test})))) | ||
(pipe-stdout | ||
(run printf "echo ☠") | ||
(run %{test})))) | ||
|
||
(rule | ||
(copy cat.ml cat_nat.ml)) | ||
(copy cat.ml cat_nat.ml)) | ||
|
||
(tests | ||
(names md5) | ||
(modes | ||
js | ||
wasm) | ||
(modes js wasm) | ||
(action | ||
(progn | ||
(run node %{test} %{dep:some-random-file}) | ||
(run node %{test} %{dep:some-random-file} %{dep:some-random-file}) | ||
(run node %{test} -offset 2000 -length 4000 %{dep:some-random-file}) | ||
(pipe-stdout | ||
(echo "tests") | ||
(run node %{test})) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run node %{test} -offset 5 -length 5)) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run node %{test} -offset 2 -length 5))))) | ||
(progn | ||
(run node %{test} %{dep:some-random-file}) | ||
(run node %{test} %{dep:some-random-file} %{dep:some-random-file}) | ||
(run node %{test} -offset 2000 -length 4000 %{dep:some-random-file}) | ||
(pipe-stdout | ||
(echo "tests") | ||
(run node %{test})) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run node %{test} -offset 5 -length 5)) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run node %{test} -offset 2 -length 5))))) | ||
|
||
(tests | ||
(names md5_nat) | ||
(modes (best exe)) | ||
(modes | ||
(best exe)) | ||
(action | ||
(progn | ||
(run %{test} %{dep:some-random-file}) | ||
(run %{test} %{dep:some-random-file} %{dep:some-random-file}) | ||
(run %{test} -offset 2000 -length 4000 %{dep:some-random-file}) | ||
(pipe-stdout | ||
(echo "tests") | ||
(run %{test})) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run %{test} -offset 5 -length 5)) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run %{test} -offset 2 -length 5))))) | ||
(progn | ||
(run %{test} %{dep:some-random-file}) | ||
(run %{test} %{dep:some-random-file} %{dep:some-random-file}) | ||
(run %{test} -offset 2000 -length 4000 %{dep:some-random-file}) | ||
(pipe-stdout | ||
(echo "tests") | ||
(run %{test})) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run %{test} -offset 5 -length 5)) | ||
(pipe-stdout | ||
(echo "teststeststests") | ||
(run %{test} -offset 2 -length 5))))) | ||
|
||
(rule | ||
(copy md5.ml md5_nat.ml)) | ||
(copy md5.ml md5_nat.ml)) | ||
|
||
(rule | ||
(copy ../../manual/files/performances/time.png some-random-file)) | ||
(copy ../../manual/files/performances/time.png some-random-file)) | ||
|
||
(rule | ||
(alias runtest) | ||
(action (diff md5.expected md5_nat.expected))) | ||
(action | ||
(diff md5.expected md5_nat.expected))) | ||
|
||
(rule | ||
(alias runtest) | ||
(action (diff cat.expected cat_nat.expected))) | ||
(action | ||
(diff cat.expected cat_nat.expected))) |