Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
cd2f02fe
Commit
cd2f02fe
authored
15 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
removed slisttest from list, because it failing (known issue).
[[Imported from SVN: r5706]]
parent
b8c215cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/test/Makefile.am
+6
-2
6 additions, 2 deletions
common/test/Makefile.am
common/test/static_assert_test.cc
+2
-0
2 additions, 0 deletions
common/test/static_assert_test.cc
with
8 additions
and
2 deletions
common/test/Makefile.am
+
6
−
2
View file @
cd2f02fe
# $Id$
TESTPROGSFAIL
=
sllisttest
TESTPROGS
=
parsetest test-stack arraylisttest smartpointertest
\
sllisttest
iteratorfacadetest tuplestest fvectortest fmatrixtest
\
iteratorfacadetest tuplestest fvectortest fmatrixtest
\
poolallocatortest settest gcdlcmtest streamtest
\
bigunsignedinttest mpihelpertest singletontest mpicollcomm
\
utilitytest lrutest
\
...
...
@@ -11,11 +12,12 @@ TESTPROGS = parsetest test-stack arraylisttest smartpointertest \
testfassign_fail1 testfassign_fail2 testfassign_fail3
\
testfassign_fail4 testfassign_fail5 testfassign_fail6
\
conversiontest bitsetvectortest deprecatedtuplestest
# $(TESTPROGSFAIL)
# which tests to run
COMPILE_XFAIL
=
$(
DUNE_COMMON_ROOT
)
/bin/xfail-compile-tests
COMPILE_XFAIL_TESTS
=
nullptr-test-fail static_assert_test
COMPILE_XFAIL_TESTS
=
nullptr-test-fail static_assert_test
_fail
compile_XFAIL
:
for
i
in
$(
COMPILE_XFAIL_TESTS
);
do
\
...
...
@@ -48,6 +50,8 @@ nullptr_test_fail_SOURCES = nullptr-test.cc
nullptr_test_fail_CPPFLAGS
=
-DFAIL
static_assert_test_SOURCES
=
static_assert_test.cc
static_assert_test_fail_SOURCES
=
static_assert_test.cc
static_assert_test_fail_CPPFLAGS
=
-DFAIL
bigunsignedinttest_SOURCES
=
bigunsignedinttest.cc
...
...
This diff is collapsed.
Click to expand it.
common/test/static_assert_test.cc
+
2
−
0
View file @
cd2f02fe
...
...
@@ -8,6 +8,8 @@
int
main
()
{
dune_static_assert
(
true
,
"OK"
);
#ifdef FAIL
dune_static_assert
(
false
,
"FAIL"
);
#endif
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment