Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions test/e2e/alcotest/failing/dune.inc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
outside_runner
tail_errors_limit
tail_errors_unlimited
unknown_option
)
(libraries alcotest alcotest.stdlib_ext alcotest.engine)
(modes exe js)
Expand All @@ -33,7 +32,6 @@
outside_runner
tail_errors_limit
tail_errors_unlimited
unknown_option
)
)

Expand Down Expand Up @@ -568,41 +566,3 @@
(package alcotest)
(action
(diff tail_errors_unlimited-js.expected tail_errors_unlimited-js.processed)))

(rule
(target unknown_option.actual)
(action
(with-outputs-to %{target}
(with-accepted-exit-codes (or 1 2 124 125)
(run %{dep:unknown_option.exe} --dry-runn)))))

(rule
(target unknown_option.processed)
(action
(with-outputs-to %{target}
(run ../../strip_randomness.exe %{dep:unknown_option.actual}))))

(rule
(alias runtest)
(package alcotest)
(action
(diff unknown_option.expected unknown_option.processed)))

(rule
(target unknown_option-js.actual)
(action
(with-outputs-to %{target}
(with-accepted-exit-codes (or 1 2 124 125)
(run node %{dep:unknown_option.bc.js} --dry-runn)))))

(rule
(target unknown_option-js.processed)
(action
(with-outputs-to %{target}
(run ../../strip_randomness.exe %{dep:unknown_option-js.actual}))))

(rule
(alias runtest-js)
(package alcotest)
(action
(diff unknown_option-js.expected unknown_option-js.processed)))
3 changes: 0 additions & 3 deletions test/e2e/alcotest/failing/unknown_option-js.expected

This file was deleted.

3 changes: 0 additions & 3 deletions test/e2e/alcotest/failing/unknown_option.expected

This file was deleted.

3 changes: 0 additions & 3 deletions test/e2e/alcotest/failing/unknown_option.ml

This file was deleted.

1 change: 0 additions & 1 deletion test/e2e/alcotest/failing/unknown_option.opts

This file was deleted.

2 changes: 1 addition & 1 deletion test/e2e/alcotest/passing/quick_only.ml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let () =
let open Alcotest in
let id () = () in
run ~argv:[| ""; "--quick" |] __FILE__
run ~argv:[| ""; "--quick-tests" |] __FILE__
[
("test-a", [ test_case "Quick" `Quick id; test_case "Slow" `Slow id ]);
("test-b", [ test_case "Slow" `Slow id; test_case "Quick" `Quick id ]);
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/alcotest/passing/quick_only_regex.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let () =
let open Alcotest in
let id () = () in
run
~argv:[| ""; "test"; "--quick"; ".*-a" |]
~argv:[| ""; "test"; "--quick-tests"; ".*-a" |]
__FILE__
[
( "test-a",
Expand Down
Loading