Fix test.sh to use prepare script
This commit is contained in:
parent
7a617720ad
commit
7def69eee7
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -16,5 +16,5 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# also tried: 23.ea.3-open, 21.0.1-graalce, 21.0.1-graal, 21.0.1.crac-librca (tried CRaC API to see if it preserves JIT state)
|
# also tried: 23.ea.3-open, 21.0.1-graalce, 21.0.1-graal, 21.0.1.crac-librca (tried CRaC API to see if it preserves JIT state)
|
||||||
. "$HOME/.sdkman/bin/sdkman-init.sh"
|
source "$HOME/.sdkman/bin/sdkman-init.sh"
|
||||||
sdk use java 21.0.1-tem
|
sdk use java 21.0.1-tem
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
@ -15,6 +15,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
source "$HOME/.sdkman/bin/sdkman-init.sh"
|
source "$HOME/.sdkman/bin/sdkman-init.sh"
|
||||||
sdk use java 21.0.1-graal 1>&2
|
sdk use java 21.0.1-graal 1>&2
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Copyright 2023 The original authors
|
# Copyright 2023 The original authors
|
||||||
#
|
#
|
||||||
|
5
test.sh
5
test.sh
@ -22,6 +22,10 @@ if [ -z "$1" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -f "./prepare_$1.sh" ]; then
|
||||||
|
"./prepare_$1.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
for sample in $(ls src/test/resources/samples/*.txt); do
|
for sample in $(ls src/test/resources/samples/*.txt); do
|
||||||
echo "Validating calculate_average_$1.sh -- $sample"
|
echo "Validating calculate_average_$1.sh -- $sample"
|
||||||
|
|
||||||
@ -30,4 +34,5 @@ for sample in $(ls src/test/resources/samples/*.txt); do
|
|||||||
|
|
||||||
diff <("./calculate_average_$1.sh") ${sample%.txt}.out
|
diff <("./calculate_average_$1.sh") ${sample%.txt}.out
|
||||||
done
|
done
|
||||||
|
|
||||||
rm measurements.txt
|
rm measurements.txt
|
||||||
|
Loading…
Reference in New Issue
Block a user