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