-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce interleaving in the scheduler (#586)
- Loading branch information
1 parent
24f9b10
commit 0ae4717
Showing
19 changed files
with
108 additions
and
98 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
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
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,7 +1,7 @@ | ||
$ env ORIG_PATH="$PATH" PATH="$PWD/ocaml-bin:$PATH" $JBUILDER build --root . -j1 --display short | ||
ocamldep bin/toto.ml.d | ||
ocamldep src/foo.ml.d | ||
ocamlc bin/.toto.eobjs/toto.{cmi,cmo,cmt} | ||
ocamlc src/.foo.objs/foo.{cmi,cmo,cmt} | ||
ocamlc bin/toto.exe | ||
ocamldep src/foo.ml.d | ||
ocamlc src/.foo.objs/foo.{cmi,cmo,cmt} | ||
ocamlc src/foo.cma |
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
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
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
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
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
12 changes: 6 additions & 6 deletions
12
test/blackbox-tests/test-cases/installable-dup-private-libs/run.t
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,13 +1,13 @@ | ||
$ $JBUILDER build @install -j1 --display short --root . | ||
ocamldep a1/a.ml.d | ||
ocamldep a2/a.ml.d | ||
ocamlc a1/.a.objs/a.{cmi,cmo,cmt} | ||
ocamlc a2/.a.objs/a.{cmi,cmo,cmt} | ||
ocamlopt a1/.a.objs/a.{cmx,o} | ||
ocamlc a1/a.cma | ||
ocamlopt a2/.a.objs/a.{cmx,o} | ||
ocamlc a2/a.cma | ||
ocamlopt a1/a.{a,cmxa} | ||
ocamlopt a2/a.{a,cmxa} | ||
ocamlopt a1/a.cmxs | ||
ocamldep a2/a.ml.d | ||
ocamlc a2/.a.objs/a.{cmi,cmo,cmt} | ||
ocamlopt a2/.a.objs/a.{cmx,o} | ||
ocamlopt a2/a.{a,cmxa} | ||
ocamlopt a2/a.cmxs | ||
ocamlc a1/a.cma | ||
ocamlc a2/a.cma |
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
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
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,23 +1,23 @@ | ||
$ $JBUILDER build -j1 src/test.exe --display short --root . --debug-dependency-path | ||
ocamllex src/lexer1.ml | ||
ocamldep src/lexer1.ml.d | ||
ocamllex src/lexer2.ml | ||
ocamldep src/lexer2.ml.d | ||
ocamldep src/test.ml.d | ||
menhir src/test_base.{ml,mli} | ||
menhir src/test_menhir1.{ml,mli} | ||
ocamldep src/lexer1.ml.d | ||
ocamldep src/lexer2.ml.d | ||
ocamldep src/test_base.ml.d | ||
menhir src/test_menhir1.{ml,mli} | ||
ocamldep src/test_menhir1.ml.d | ||
ocamldep src/test_menhir1.mli.d | ||
ocamldep src/test_base.mli.d | ||
ocamlc src/.test.eobjs/test_menhir1.{cmi,cmti} | ||
ocamlc src/.test.eobjs/test_base.{cmi,cmti} | ||
ocamlc src/.test.eobjs/lexer1.{cmi,cmo,cmt} | ||
ocamlopt src/.test.eobjs/test_menhir1.{cmx,o} | ||
ocamldep src/test_base.mli.d | ||
ocamlc src/.test.eobjs/test_base.{cmi,cmti} | ||
ocamlc src/.test.eobjs/lexer2.{cmi,cmo,cmt} | ||
ocamlopt src/.test.eobjs/test_base.{cmx,o} | ||
ocamlopt src/.test.eobjs/lexer1.{cmx,o} | ||
ocamlc src/.test.eobjs/test.{cmi,cmo,cmt} | ||
ocamlopt src/.test.eobjs/test_menhir1.{cmx,o} | ||
ocamlopt src/.test.eobjs/lexer1.{cmx,o} | ||
ocamlopt src/.test.eobjs/test_base.{cmx,o} | ||
ocamlopt src/.test.eobjs/lexer2.{cmx,o} | ||
ocamlopt src/.test.eobjs/test.{cmx,o} | ||
ocamlopt src/test.exe |
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
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
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
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 @@ | ||
$ $JBUILDER runtest -j1 --display short --root . 2>&1 | sed "s/ cmd / sh /" | ||
sh stderr,stdout | ||
sh both | ||
sh stderr,stdout | ||
sh both | ||
diff alias runtest | ||
sh both | ||
sh both | ||
diff alias runtest | ||
diff alias runtest |
Oops, something went wrong.