blob: 42c2d8cd92c3ac51b4d5fbbe1918576f28494763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
# Author: Robie Basak <robie.basak@ubuntu.com>
cd "$ADTTMP"
cat > hello.php <<EOT
<?php echo "Hello, world!\n"; ?>
EOT
result=`php5 hello.php`
test "$result" = "Hello, world!"
|