diff mbox

[U-Boot,v2,3/4] test: Remove tabs from trace test

Message ID 1410720017-22217-3-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass Sept. 14, 2014, 6:40 p.m. UTC
These cause U-Boot to print a list of available commands. It doesn't break
the test, but it is best to remove them from the output.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 test/trace/test-trace.sh | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

Comments

Tom Rini Sept. 25, 2014, 2:44 p.m. UTC | #1
On Sun, Sep 14, 2014 at 12:40:16PM -0600, Simon Glass wrote:

> These cause U-Boot to print a list of available commands. It doesn't break
> the test, but it is best to remove them from the output.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/test/trace/test-trace.sh b/test/trace/test-trace.sh
index aa02f09..973063c 100755
--- a/test/trace/test-trace.sh
+++ b/test/trace/test-trace.sh
@@ -27,17 +27,17 @@  build_uboot() {
 run_trace() {
 	echo "Run trace"
 	./${OUTPUT_DIR}/u-boot <<END
-	trace stats
-	hash sha256 0 10000
-	trace pause
-	trace stats
-	hash sha256 0 10000
-	trace stats
-	trace resume
-	hash sha256 0 10000
-	trace pause
-	trace stats
-	reset
+trace stats
+hash sha256 0 10000
+trace pause
+trace stats
+hash sha256 0 10000
+trace stats
+trace resume
+hash sha256 0 10000
+trace pause
+trace stats
+reset
 END
 }