This patch makes a further attempt to fix the tests broken by the
previous revision by ensuring that the command line for the modified
Dexter tests use -std=gnu++11, in keeping with the old build script.
This reverts commit 5647f2908d.
17 lines
353 B
C++
17 lines
353 B
C++
// Purpose:
|
|
// Check that \DexUnreachable correctly applies a penalty if the command
|
|
// line is stepped on.
|
|
//
|
|
// UNSUPPORTED: system-darwin
|
|
//
|
|
//
|
|
// RUN: %dexter_regression_test_build %s -o %t
|
|
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
|
|
// CHECK: unreachable.cpp:
|
|
|
|
int
|
|
main()
|
|
{
|
|
return 1; // DexUnreachable()
|
|
}
|