blob: cdf24e3716511f67f9d4795997cb646664250d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
if test -z "$program"; then echo "Define the program env var" 1>&2; exit 2; fi
output=$program.output
exec > ${output} 2>&1
subdir=${test_source_directory}/subdir
# Let ocamltest know where we write our output
echo output=\"${output}\" > ${ocamltest_response}
export PATH="/bin:/usr/bin:${subdir}:"
export BAR=bar
echo "## Test 1: a binary program in the path"
$program ls / > /dev/null || echo "ls failed"
echo "## Test 2: a #! script in the path"
$program script1 2 3 4 || echo "script1 failed"
echo "## Test 3: a script without #! in the path"
$program script2 5 6 7 || echo "script2 failed"
echo "## Test 4: a script in the current directory"
cd ${test_source_directory}
$program script3 8 9 || echo "script3 failed"
echo "## Test 5: a non-existent program"
$program nosuchprogram
echo "## Test 6: a non-executable program"
$program nonexec
export PATH="/bin:/usr/bin:${subdir}"
echo "## Test 7: a script in the current directory"
$program script3 9 && echo "script3 should have failed"
exit 0
|