[llvm-commits] [test-suite] r57448 - /test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh

Chris Lattner sabre at nondot.org
Mon Oct 13 10:30:15 PDT 2008


Author: lattner
Date: Mon Oct 13 12:30:15 2008
New Revision: 57448

URL: http://llvm.org/viewvc/llvm-project?rev=57448&view=rev
Log:
manually expand out the result of 'seq', allowing this to pass on
darwin, which doesn't have seq.

Modified:
    test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh

Modified: test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh?rev=57448&r1=57447&r2=57448&view=diff

==============================================================================
--- test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh (original)
+++ test-suite/trunk/MultiSource/Applications/lua/generate_inputs.sh Mon Oct 13 12:30:15 2008
@@ -8,10 +8,10 @@
 	input1=$1
 	input10=""
 	input50=""
-	for c in `seq 1 10`; do
+	for c in 1 2 3 4 5 6 7 8 9 10; do
 		input10="$input10 $input1"
 	done
-	for c in `seq 1 5`; do
+	for c in 1 2 3 4 5; do
 		input50="$input50 $input10"
 	done
 	declare -i count=$2





More information about the llvm-commits mailing list