summaryrefslogtreecommitdiff
path: root/sapi/cli/tests
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2008-07-06 16:59:39 +0000
committerNuno Lopes <nlopess@php.net>2008-07-06 16:59:39 +0000
commit180a7bef35e46271fd4f8c5ff0d6ab323f6927a2 (patch)
tree97fae4d51450dc52d911cbb3880952adf412a045 /sapi/cli/tests
parent4ef36bc36456940f140ed25229464174af3e63e0 (diff)
downloadphp-git-180a7bef35e46271fd4f8c5ff0d6ab323f6927a2.tar.gz
add test for the shebang thing
Diffstat (limited to 'sapi/cli/tests')
-rw-r--r--sapi/cli/tests/021.phpt39
1 files changed, 39 insertions, 0 deletions
diff --git a/sapi/cli/tests/021.phpt b/sapi/cli/tests/021.phpt
new file mode 100644
index 0000000000..81adc27ada
--- /dev/null
+++ b/sapi/cli/tests/021.phpt
@@ -0,0 +1,39 @@
+--TEST--
+CLI shell shebang
+--SKIPIF--
+<?php
+include 'skipif.inc';
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = getenv('TEST_PHP_EXECUTABLE');
+
+$filename = __DIR__.'/021.tmp.php';
+
+$script = "#!$php\n".
+ "ola\n".
+ "<?php echo 1+1,'\n';\n".
+ "?>\n".
+ "adeus\n";
+
+file_put_contents($filename, $script);
+chmod($filename, 0777);
+
+echo `$filename`;
+
+echo "\nDone\n";
+?>
+--CLEAN--
+<?php
+unlink(__DIR__.'/021.tmp.php');
+?>
+--EXPECTF--
+ola
+2
+adeus
+
+Done