diff mbox

sort the open posix tests before executing

Message ID 1457415124-5023-1-git-send-email-vgupta@synopsys.com
State New
Headers show

Commit Message

Vineet Gupta March 8, 2016, 5:32 a.m. UTC
Helps do a simple diff of output logs !

Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
---
 testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vineet Gupta March 28, 2016, 7:21 a.m. UTC | #1
On Wednesday 09 March 2016 07:55 PM, Cyril Hrubis wrote:
> Hi!
>> Helps do a simple diff of output logs !
> Sounds reasonable to me.
>
> Has anyone an argument against this?
>

Ping !
diff mbox

Patch

diff --git a/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh b/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh
index 0477bd7059bc..7cf2b09a47d2 100755
--- a/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh
+++ b/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh
@@ -22,7 +22,7 @@  EOF
 
 run_option_group_tests()
 {
-	for test_script in $(find $1 -name run.sh); do
+	for test_script in $(find $1 -name run.sh | sort); do
 		(cd "$(dirname "$test_script")" && ./$(basename "$test_script"))
 	done
 }