]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
unit-test: make "test -e" test independent of $CWD
authorStephen Warren <swarren@wwwdotorg.org>
Sun, 2 Mar 2014 05:18:00 +0000 (22:18 -0700)
committerTom Rini <trini@ti.com>
Fri, 7 Mar 2014 15:59:06 +0000 (10:59 -0500)
commitcfd13e8dda9d2db3f6bdf32d623aecf10ee1ba50
tree407efdba8744978388eacbb09a2bdf0b3272f6f6
parentfe9ca3d3287185e388de55904420cc7915e4a3b1
unit-test: make "test -e" test independent of $CWD

The unit-test for hush's "test -e" currently relies upon being run in
the U-Boot build directory, because it tests for the existence of a file
that exists in that directory.

Fix this by explicitly creating the file we use for the existence test,
and deleting it afterwards so that multiple successive unit-test
invocations succeed. This required adding an os.c function to erase
files.

Reported-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
arch/sandbox/cpu/os.c
include/os.h
test/command_ut.c