Skip to content

Commit 1204d01

Browse files
committed
fix: return code when input files are missing in bsrate test
1 parent 601ebf1 commit 1204d01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test_scripts/test_bsrate.test

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ if [[ -e "${infile1}" && -e "${infile2}" ]]; then
1010
exit 1;
1111
fi
1212
else
13-
exit 1;
13+
echo "${infile1} and ${infile2} not found; skipping dependent tests";
14+
exit 77;
1415
fi

0 commit comments

Comments
 (0)