Skip to content

Commit 65e264c

Browse files
committed
Fix field access.
1 parent d42285f commit 65e264c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/ParallelTestRunner.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -761,15 +761,13 @@ function runtests(ARGS; testfilter = Returns(true), RecordType = TestRecord,
761761

762762
# construct a testset to render the test results
763763
t1 = time()
764-
o_ts = Test.DefaultTestSet("Overall")
764+
o_ts = Test.DefaultTestSet("Overall"; verbose=do_verbose)
765765
if VERSION < v"1.13.0-DEV.1037"
766766
o_ts.time_start = t0
767767
o_ts.time_end = t1
768-
o_ts.verbose = do_verbose
769768
else
770-
@atomic o_ts.time_start = t0
769+
#@atomic o_ts.time_start = t0
771770
@atomic o_ts.time_end = t1
772-
@atomic o_ts.verbose = do_verbose
773771
end
774772
with_testset(o_ts) do
775773
completed_tests = Set{String}()
@@ -834,7 +832,7 @@ function runtests(ARGS; testfilter = Returns(true), RecordType = TestRecord,
834832
testset.time_start = start
835833
testset.time_end = stop
836834
else
837-
@atomic testset.time_start = start
835+
#@atomic testset.time_start = start
838836
@atomic testset.time_end = stop
839837
end
840838
with_testset(testset) do

0 commit comments

Comments
 (0)