diff options
author | Sven Gothel <[email protected]> | 2012-03-17 21:18:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-17 21:18:18 +0100 |
commit | b048c2458b53eb012d15e21dde9e8ec0b1406d0b (patch) | |
tree | 52998b76cde5cab0479f5a002157af9fbfcc6a5e /src/test-native/mesa-demos-patched/shell_loop.sh | |
parent | a40e22a58e0c71a95f11b7c7e83247fbd4a4d94f (diff) |
move src/test/native -> src/test-native - allowing better exclusion for archive scripts
Diffstat (limited to 'src/test-native/mesa-demos-patched/shell_loop.sh')
-rw-r--r-- | src/test-native/mesa-demos-patched/shell_loop.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test-native/mesa-demos-patched/shell_loop.sh b/src/test-native/mesa-demos-patched/shell_loop.sh new file mode 100644 index 000000000..c95d04b7e --- /dev/null +++ b/src/test-native/mesa-demos-patched/shell_loop.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +let i=0 + +while true ; do + let i=$i+1 + echo TEST RUN $i + #./es2gears -loops 1 -time 100 + ./es2redsquare -loops 1 -time 100 +done + |