From 3aa521fed0838021209b4be36849feb2c7e40a2e Mon Sep 17 00:00:00 2001 From: David Steele Date: Wed, 10 Apr 2019 13:37:24 -0400 Subject: [PATCH] Fix compile flag accidentally removed in 5ee8388f. --- test/lib/pgBackRestTest/Common/JobTest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/pgBackRestTest/Common/JobTest.pm b/test/lib/pgBackRestTest/Common/JobTest.pm index f05491170..0cdee97b9 100644 --- a/test/lib/pgBackRestTest/Common/JobTest.pm +++ b/test/lib/pgBackRestTest/Common/JobTest.pm @@ -416,7 +416,7 @@ sub run # Flags used to buid test.c my $strTestFlags = - '-O0' . ($self->{oTest}->{&TEST_VM} ne VM_U12 ? ' -ftree-coalesce-vars' : '') . + '-DDEBUG_TEST_TRACE -O0' . ($self->{oTest}->{&TEST_VM} ne VM_U12 ? ' -ftree-coalesce-vars' : '') . (vmCoverageC($self->{oTest}->{&TEST_VM}) && $self->{bCoverageUnit} ? ' -fprofile-arcs -ftest-coverage' : '') . ($self->{oTest}->{&TEST_CTESTDEF} ? " $self->{oTest}->{&TEST_CTESTDEF}" : '');