mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 11:02:24 +00:00
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
# '.' this from indiviual test.sh files
|
|
if diff -b expected result
|
|
then printf "PASSED: $PWD\n\n"
|
|
else printf "FAILED: $PWD\n\n"; exit 1
|
|
fi
|