Skip to content

Commit 08412b0

Browse files
author
Kyle Maxwell
committed
more generate (failing) [0.753530]
1 parent 4496987 commit 08412b0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

generate_bisect.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
#!/bin/sh
2+
if [ -z "$1" ]; then
3+
echo "Usage: $0 TEST_PREFIX"
4+
exit
5+
fi
26
cat /dev/null > /tmp/bisect.sh
37
chmod +x /tmp/bisect.sh
48
cp "test/$1".* /tmp || exit
5-
echo "./bootstrap.sh && ./configure && make && ./parsley /tmp/$1.let /tmp/$1.html 2>&1 | diff /tmp/$1.json -" >> /tmp/bisect.sh
9+
echo "make && ./parsley /tmp/$1.let /tmp/$1.html 2>&1 | diff /tmp/$1.json -" >> /tmp/bisect.sh
610
cat /tmp/bisect.sh
711
echo "-------------"
812
echo "git bisect run /tmp/bisect.sh"

0 commit comments

Comments
 (0)