mirror of
https://gitee.com/bianbu-linux/factorytest
synced 2025-04-22 05:09:54 -04:00
10 lines
152 B
Bash
Executable file
10 lines
152 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
ROOT=$(dirname "$(readlink -f "$0")")
|
|
|
|
pushd $ROOT > /dev/null
|
|
./stress-ng.sh &
|
|
./memtester.sh &
|
|
./gpu.sh &
|
|
./vpu.sh &
|
|
popd > /dev/null
|