From 17b9089a32e9edc01157989f536525a53635c2d2 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Thu, 20 Feb 2014 13:48:10 +0900 Subject: [PATCH] tests/run-ryu: Correct logfile reporting $logfile is already prefixed by "$sandbox/" and suffixed by ".log" so do not duplicate this prefix and suffix combination when appending $logfile to $logs. Cc: YAMAMOTO Takashi Signed-off-by: Simon Horman Signed-off-by: Ben Pfaff --- tests/run-ryu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-ryu b/tests/run-ryu index 05578d493..94fe6bbb5 100755 --- a/tests/run-ryu +++ b/tests/run-ryu @@ -97,7 +97,7 @@ run_app() { EOF logfile=$sandbox/`echo $app | sed 's,/,.,g'`.log logs="$logs - $sandbox/$logfile.log" + $logfile" ryu-manager "$app" --log-file="$logfile" & pid=$! echo $pid > "$sandbox/ryu.pid" i=0 -- 2.43.0