]> granicus.if.org Git - php/commitdiff
MFH: fix tests, add missing test
authorJani Taskinen <jani@php.net>
Thu, 14 Aug 2008 20:57:13 +0000 (20:57 +0000)
committerJani Taskinen <jani@php.net>
Thu, 14 Aug 2008 20:57:13 +0000 (20:57 +0000)
sapi/cli/tests/021.phpt [new file with mode: 0644]

diff --git a/sapi/cli/tests/021.phpt b/sapi/cli/tests/021.phpt
new file mode 100644 (file)
index 0000000..b127b89
--- /dev/null
@@ -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 = dirname(__FILE__).'/021.tmp.php';
+
+$script = "#!$php -n\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(dirname(__FILE__).'/021.tmp.php');
+?>
+--EXPECTF--
+ola
+2
+adeus
+
+Done