File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 279279 test-cases/github1231
280280 (progn (run %{exe:cram.exe } -test run.t) (diff? run.t run.t.corrected)))))
281281
282+ (alias
283+ (name github1342)
284+ (deps (package dune) (source_tree test-cases/github1342))
285+ (action
286+ (chdir
287+ test-cases/github1342
288+ (progn (run %{exe:cram.exe } -test run.t) (diff? run.t run.t.corrected)))))
289+
282290(alias
283291 (name github20)
284292 (deps (package dune) (source_tree test-cases/github20))
977985 (alias github1019)
978986 (alias github1099)
979987 (alias github1231)
988+ (alias github1342)
980989 (alias github20)
981990 (alias github24)
982991 (alias github25)
10921101 (alias github1019)
10931102 (alias github1099)
10941103 (alias github1231)
1104+ (alias github1342)
10951105 (alias github20)
10961106 (alias github24)
10971107 (alias github25)
Original file line number Diff line number Diff line change 1+ Reproduction case for # 1342. Check that when the user edits files in
2+ _build, things are rebuild as expected.
3+
4+ $ echo 42 > x
5+ $ dune build x
6+ $ cat _build/ default / x
7+ 42
8+ $ echo 0 > _build/ default / x
9+ $ dune build x
10+ $ cat _build/ default / x
11+ 0
You can’t perform that action at this time.
0 commit comments