mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
9 lines
209 B
Bash
Executable File
9 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
n=$1
|
|
#generate test
|
|
../../emesh/dv/egen.pl -rand -n $n > ./tmp.test
|
|
#take split
|
|
egrep "READ|WRITE" ./tmp.test > tests/test_random.memh
|
|
egrep -v "READ|WRITE" ./tmp.test > tests/test_random.exp
|
|
|