kvm.sh (61010e74d76ca51dd452290d6c340c681df498ce) | kvm.sh (9dfa5b35c190e3ce9325a356f54282a4b8dc0336) |
---|---|
1#!/bin/bash 2# 3# Run a series of 14 tests under KVM. These are not particularly 4# well-selected or well-tuned, but are the current set. Run from the 5# top level of the source tree. 6# 7# Edit the definitions below to set the locations of the various directories, 8# as well as the test duration. --- 145 unchanged lines hidden (view full) --- 154 shift 155 ;; 156 --results) 157 checkarg --results "(absolute pathname)" "$#" "$2" '^/' '^error' 158 resdir=$2 159 shift 160 ;; 161 --torture) | 1#!/bin/bash 2# 3# Run a series of 14 tests under KVM. These are not particularly 4# well-selected or well-tuned, but are the current set. Run from the 5# top level of the source tree. 6# 7# Edit the definitions below to set the locations of the various directories, 8# as well as the test duration. --- 145 unchanged lines hidden (view full) --- 154 shift 155 ;; 156 --results) 157 checkarg --results "(absolute pathname)" "$#" "$2" '^/' '^error' 158 resdir=$2 159 shift 160 ;; 161 --torture) |
162 checkarg --torture "(suite name)" "$#" "$2" '^rcu$' '^--' | 162 checkarg --torture "(suite name)" "$#" "$2" '^\(lock\|rcu\)$' '^--' |
163 TORTURE_SUITE=$2 164 shift 165 ;; 166 *) 167 echo Unknown argument $1 168 usage 169 ;; 170 esac --- 234 unchanged lines hidden --- | 163 TORTURE_SUITE=$2 164 shift 165 ;; 166 *) 167 echo Unknown argument $1 168 usage 169 ;; 170 esac --- 234 unchanged lines hidden --- |