Changeset 159
- Timestamp:
- 05/09/08 02:26:59 (8 months ago)
- Location:
- trunk/bin
- Files:
-
- 3 modified
-
specrunner (modified) (1 diff)
-
testrunner (modified) (1 diff)
-
testrunner-st (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/specrunner
r149 r159 75 75 76 76 if (!is_null($file)) { 77 $file = realpath($file); 78 if ($file !== false) { 79 include_once $file; 77 $result = include_once $file; 78 if (!$result) { 79 echo "ERROR: Cannot load '$file'. Make sure the file path and permission are correct.\n"; 80 exit(1); 80 81 } 81 82 } -
trunk/bin/testrunner
r149 r159 75 75 76 76 if (!is_null($file)) { 77 $file = realpath($file); 78 if ($file !== false) { 79 include_once $file; 77 $result = include_once $file; 78 if (!$result) { 79 echo "ERROR: Cannot load '$file'. Make sure the file path and permission are correct.\n"; 80 exit(1); 80 81 } 81 82 } -
trunk/bin/testrunner-st
r149 r159 75 75 76 76 if (!is_null($file)) { 77 $file = realpath($file); 78 if ($file !== false) { 79 include_once $file; 77 $result = include_once $file; 78 if (!$result) { 79 echo "ERROR: Cannot load '$file'. Make sure the file path and permission are correct.\n"; 80 exit(1); 80 81 } 81 82 }
