Skip to content

Commit d2765b6

Browse files
bongjunjKihongHeo
authored andcommitted
[Test] fix bootstrap testcase traversal maxdepth
1 parent 6eed9b2 commit d2765b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ gen_test() {
154154
(flags -runtime-variant d -g)
155155
(libraries claml))
156156
" >$TARGET
157-
for cfile in $(find test -name "*.c"); do
157+
for cfile in $(find test -maxdepth 1 -name "*.c"); do
158158
cfile=$(basename $cfile)
159159
echo "(rule
160160
(deps $cfile)

test/rewriter/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
(rule
1919
(alias runtest)
20-
(action (diff simple.output simple.expected)))
20+
(action (diff simple.output simple.expected)))

0 commit comments

Comments
 (0)