summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/memory-bandwidth/install.sh
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-12-29 22:06:57 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-12-29 22:06:57 -0500
commit2025164e1ae8b791a2cdf2ec4b0bcd55336f142f (patch)
tree9af3e5db26f82989c2df18f800d1f24aff23e268 /pts/test-resources/memory-bandwidth/install.sh
parentb69fcfb7f641eb4e0f958cdc8c3d279c01f08980 (diff)
downloadphoronix-test-suite-upstream-2025164e1ae8b791a2cdf2ec4b0bcd55336f142f.tar.gz
phoronix-test-suite-upstream-2025164e1ae8b791a2cdf2ec4b0bcd55336f142f.tar.xz
phoronix-test-suite-upstream-2025164e1ae8b791a2cdf2ec4b0bcd55336f142f.zip
pts: Adjust more test profiles from using $argv to $LOG_FILE
Diffstat (limited to 'pts/test-resources/memory-bandwidth/install.sh')
-rwxr-xr-xpts/test-resources/memory-bandwidth/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/pts/test-resources/memory-bandwidth/install.sh b/pts/test-resources/memory-bandwidth/install.sh
index 12c1a7c..d03ad58 100755
--- a/pts/test-resources/memory-bandwidth/install.sh
+++ b/pts/test-resources/memory-bandwidth/install.sh
@@ -10,16 +10,16 @@ echo "#!/bin/sh
case \"\$1\" in
\"TEST_L2READ\")
- ./bandwidth -l2read | grep \"L2 cache sequential read\"
+ ./bandwidth -l2read | grep \"L2 cache sequential read\" > \$LOG_FILE
;;
\"TEST_L2WRITE\")
- ./bandwidth -l2write | grep \"L2 cache sequential write\"
+ ./bandwidth -l2write | grep \"L2 cache sequential write\" > \$LOG_FILE
;;
\"TEST_READ\")
- ./bandwidth -read | grep \"Main memory sequential read\"
+ ./bandwidth -read | grep \"Main memory sequential read\" > \$LOG_FILE
;;
\"TEST_WRITE\")
- ./bandwidth -write | grep \"Main memory sequential write\"
+ ./bandwidth -write | grep \"Main memory sequential write\" > \$LOG_FILE
;;
esac
" > memory-bandwidth