Skip to content

Commit a5a124a

Browse files
committed
check old g
1 parent df3370f commit a5a124a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/equations/reference_data.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Physical constants in SI units (reference values from the Williamson et al. test suite)
55
const EARTH_RADIUS = 6.37122e6 # m
6-
const EARTH_GRAVITATIONAL_ACCELERATION = 9.80616 # m/s²
6+
const EARTH_GRAVITATIONAL_ACCELERATION = 9.81 # 9.80616 # m/s²
77
const EARTH_ROTATION_RATE = 7.292e-5 # rad/s
88
const SECONDS_PER_DAY = 8.64e4
99

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ const TRIXI_NTHREADS = clamp(Sys.CPU_THREADS, 2, 3)
2828
# cf. https://github.com/JuliaParallel/MPI.jl/pull/391
2929
@test true
3030

31-
run(`$(Base.julia_cmd()) --threads=$TRIXI_NTHREADS --check-bounds=yes --code-coverage=none $(abspath("test_threaded.jl"))`)
31+
status = run(ignorestatus(`$(Base.julia_cmd()) --threads=$TRIXI_NTHREADS --check-bounds=yes --code-coverage=none $(abspath("test_threaded.jl"))`))
32+
@test success(status)
3233
end
3334

3435
@time if TRIXI_TEST == "all" || TRIXI_TEST == "trixi_consistency"

0 commit comments

Comments
 (0)