blob: 3941461df574481f04a878f3e5047228ea3db2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh
touch "$DATA_DIR/$CUR_TEST.pnor"
# Don't record the output of ffspart
../ffspart/ffspart -s 0x1000 -c 10 -i "$DATA_DIR/$CUR_TEST.ffs" \
-p "$DATA_DIR/$CUR_TEST.pnor" 2>&1 >/dev/null
if [ "$?" -ne 0 ] ; then
fail_test
fi
run_binary "./pflash" "-F $DATA_DIR/$CUR_TEST.pnor --info"
if [ "$?" -ne 0 ] ; then
fail_test
fi
#--info will print the name of the file which will change between runs
sed -i "s|$DATA_DIR/$CUR_TEST.pnor|FILE|" "$STDOUT_OUT"
diff_with_result
pass_test
|