changeset 732:0ac06d08cfe5

Root directory isn't writable with squashfs, use /tmp instead.
author Rob Landley <rob@landley.net>
date Mon, 18 May 2009 15:06:41 -0500
parents 545f5665835b
children 20808cf1edab
files smoketest.sh
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/smoketest.sh	Mon May 18 15:05:40 2009 -0500
+++ b/smoketest.sh	Mon May 18 15:06:41 2009 -0500
@@ -17,8 +17,8 @@
 # Show free space
 df
 # Smoke test for the compiler
-gcc -s /usr/src/thread-hello2.c -lpthread &&
-./a.out
+gcc -s /usr/src/thread-hello2.c -lpthread -o /tmp/hello &&
+/tmp/hello
 sync
 exit
 EOF