summaryrefslogtreecommitdiff
path: root/parse_datasheet/non_reg.sh
blob: e3c9b9c800f520551d05ff4ae892f7d056354791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

LST="imch_conf smrbase gbe"

for each in $LST; do
	rm -f tests/${each}.txt
done

for each in $LST; do
	./parse_320066.py $each > tests/${each}.txt
	echo
	echo ==============================================
	echo $each
	echo ==============================================
	echo
	diff -u refs/${each}.txt tests/${each}.txt
	echo
	echo
	echo
	echo
done