aboutsummaryrefslogtreecommitdiff
path: root/tests/run_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_tests.sh')
-rwxr-xr-xtests/run_tests.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index 49f6fd8..5268293 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -645,21 +645,6 @@ utilfdt_tests () {
fdtdump_tests () {
run_fdtdump_test fdtdump.dts
- return
-
- local dts=fdtdump.dts
- local dtb=fdtdump.dts.dtb
- local out=fdtdump.dts.out
- run_dtc_test -O dtb $dts -o ${dtb}
- $FDTDUMP ${dtb} | grep -v "//" >${out}
- if cmp $dts $out >/dev/null; then
- PASS
- else
- if [ -z "$QUIET_TEST" ]; then
- diff -w fdtdump.dts $out
- fi
- FAIL "Results differ from expected"
- fi
}
while getopts "vt:me" ARG ; do