git @ Cat's Eye Technologies Quylthulg / 08066c3
This may be how we arrange this, going forward. Or maybe not. Chris Pressey 6 years ago
5 changed file(s) with 15 addition(s) and 15 deletion(s). Raw diff Collapse all Expand all
+0
-5
bin/qlzqqlzuup_hugs less more
0 #!/bin/sh
1
2 THIS=`realpath $0`
3 DIR=`dirname $THIS`/../src
4 runhugs $DIR/Main.hs $*
0 #!/bin/sh
1
2 THIS=`realpath $0`
3 DIR=`dirname $THIS`/../src
4 ( runhaskell -i$DIR $DIR/Main.hs $* )
33 if [ -x bin/qlzqqlzuup ]; then
44 APPLIANCES="$APPLIANCES tests/appliances/qlzqqlzuup.md"
55 fi
6 if command -v runhugs >/dev/null 2>&1; then
7 APPLIANCES="$APPLIANCES tests/appliances/qlzqqlzuup_hugs.md"
6 if command -v runhaskell >/dev/null 2>&1; then
7 APPLIANCES="$APPLIANCES tests/appliances/qlzqqlzuup_runhaskell.md"
88 fi
99 if [ "${APPLIANCES}x" = x ]; then
10 echo "Neither bin/qlzqqlzuup executable nor runhugs found on search path."
10 echo "Neither bin/qlzqqlzuup executable nor runhaskell found on search path."
1111 exit 1
1212 fi
1313 falderal $APPLIANCES tests/Quylthulg.markdown
+0
-7
tests/appliances/qlzqqlzuup_hugs.md less more
0 -> Functionality "Interpret Quylthulg Program" is implemented by
1 -> shell command
2 -> "bin/qlzqqlzuup_hugs %(test-body-file)"
3
4 -> Functionality "Interpret Quylthulg Program" is implemented by
5 -> shell command
6 -> "bin/qlzqqlzuup_hugs -m %(test-body-file)"
0 -> Functionality "Interpret Quylthulg Program" is implemented by
1 -> shell command
2 -> "bin/qlzqqlzuup_runhaskell %(test-body-file)"
3
4 -> Functionality "Interpret Quylthulg Program" is implemented by
5 -> shell command
6 -> "bin/qlzqqlzuup_runhaskell -m %(test-body-file)"