summaryrefslogtreecommitdiff
path: root/test/dm/test-dm.sh
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2015-05-20 19:27:29 (GMT)
committerTom Rini <trini@konsulko.com>2015-05-21 13:16:17 (GMT)
commit40441e0bd34425994c6feb7a3e78fa84b23d7244 (patch)
tree96874d705e679cb25cc3788e53db6a80dea9bcd6 /test/dm/test-dm.sh
parentc617ede08ad0583e0e015e76ebda2c5d2f6b5854 (diff)
downloadu-boot-fsl-qoriq-40441e0bd34425994c6feb7a3e78fa84b23d7244.tar.xz
test: dm: Move the dm tests over to the ut command
Unify the command for running unit tests further by moving the "dm test" command over to "ut dm". Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/dm/test-dm.sh')
-rwxr-xr-xtest/dm/test-dm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/test-dm.sh b/test/dm/test-dm.sh
index 5c47ffd..1a0f150 100755
--- a/test/dm/test-dm.sh
+++ b/test/dm/test-dm.sh
@@ -11,6 +11,6 @@ make O=sandbox -s -j${NUM_CPUS} || die "Cannot build U-Boot"
dd if=/dev/zero of=spi.bin bs=1M count=2
echo -n "this is a test" > testflash.bin
dd if=/dev/zero bs=1M count=4 >>testflash.bin
-./sandbox/u-boot -d ./sandbox/arch/sandbox/dts/test.dtb -c "dm test"
+./sandbox/u-boot -d ./sandbox/arch/sandbox/dts/test.dtb -c "ut dm"
rm spi.bin
rm testflash.bin