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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Timo Koch
dune-common
Commits
275c824f
Commit
275c824f
authored
10 years ago
by
Dominic Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Also remove testfconstruct.cc and all associated tests
parent
31625a0b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dune/common/test/CMakeLists.txt
+1
-13
1 addition, 13 deletions
dune/common/test/CMakeLists.txt
dune/common/test/Makefile.am
+1
-13
1 addition, 13 deletions
dune/common/test/Makefile.am
dune/common/test/testfconstruct.cc
+0
-17
0 additions, 17 deletions
dune/common/test/testfconstruct.cc
with
2 additions
and
43 deletions
dune/common/test/CMakeLists.txt
+
1
−
13
View file @
275c824f
...
...
@@ -29,7 +29,6 @@ set(TESTS
shared_ptrtest_config
singletontest
streamtest
testfconstruct
testfloatcmp
tuplestest_config
tupleutilitytest
...
...
@@ -48,9 +47,7 @@ set(COMPILEFAILTESTS
check_fvector_size_fail1
check_fvector_size_fail2
genericiterator_compile_fail
nullptr-test-fail
testfconstruct_fail1
testfconstruct_fail2
)
nullptr-test-fail
)
set
(
TESTPROGS
${
TESTS
}
${
FAILTESTS
}
)
...
...
@@ -161,15 +158,6 @@ add_executable("testdebugallocator_fail5" testdebugallocator.cc)
target_link_libraries
(
testdebugallocator_fail5 dunecommon
)
set_target_properties
(
testdebugallocator_fail5 PROPERTIES COMPILE_DEFINITIONS
"FAILURE5;EXPECTED_SIGNAL=SIGSEGV"
)
add_executable
(
"testfconstruct"
EXCLUDE_FROM_ALL testfconstruct.cc
)
set_target_properties
(
testfconstruct PROPERTIES COMPILE_FLAGS
"-DFVSIZE=3"
)
target_link_libraries
(
testfconstruct
"dunecommon"
)
add_executable
(
"testfconstruct_fail1"
EXCLUDE_FROM_ALL testfconstruct.cc
)
set_target_properties
(
testfconstruct_fail1 PROPERTIES COMPILE_FLAGS
"-DFVSIZE=2"
)
target_link_libraries
(
testfconstruct_fail1
"dunecommon"
)
add_executable
(
"testfconstruct_fail2"
EXCLUDE_FROM_ALL testfconstruct.cc
)
set_target_properties
(
testfconstruct_fail2 PROPERTIES COMPILE_FLAGS
"-DFVSIZE=5"
)
target_link_libraries
(
testfconstruct_fail2
"dunecommon"
)
add_executable
(
"tuplestest_config"
tuplestest.cc
)
add_executable
(
"tupleutilitytest"
tupleutilitytest.cc
)
add_executable
(
"utilitytest"
utilitytest.cc
)
...
...
This diff is collapsed.
Click to expand it.
dune/common/test/Makefile.am
+
1
−
13
View file @
275c824f
...
...
@@ -36,7 +36,6 @@ TESTPROGS = \
testdebugallocator_fail3
\
testdebugallocator_fail4
\
testdebugallocator_fail5
\
testfconstruct
\
testfloatcmp
\
tuplestest_std
\
tupleutilitytest
\
...
...
@@ -50,9 +49,7 @@ COMPILE_XFAIL_TESTS = \
check_fvector_size_fail1
\
check_fvector_size_fail2
\
genericiterator_compile_fail
\
nullptr-test-fail
\
testfconstruct_fail1
\
testfconstruct_fail2
nullptr-test-fail
compile_XFAIL
:
for
i
in
$(
COMPILE_XFAIL_TESTS
);
do
\
...
...
@@ -192,15 +189,6 @@ testdebugallocator_fail4_CPPFLAGS = $(AM_CPPFLAGS) -DFAILURE4 -DDEBUG_ALLOCATOR_
testdebugallocator_fail5_SOURCES
=
testdebugallocator.cc
testdebugallocator_fail5_CPPFLAGS
=
$(
AM_CPPFLAGS
)
-DFAILURE5
testfconstruct_SOURCES
=
testfconstruct.cc
testfconstruct_CPPFLAGS
=
$(
AM_CPPFLAGS
)
-DFVSIZE
=
3
testfconstruct_fail1_SOURCES
=
testfconstruct.cc
testfconstruct_fail1_CPPFLAGS
=
$(
AM_CPPFLAGS
)
-DFVSIZE
=
2
testfconstruct_fail2_SOURCES
=
testfconstruct.cc
testfconstruct_fail2_CPPFLAGS
=
$(
AM_CPPFLAGS
)
-DFVSIZE
=
5
testfloatcmp_SOURCES
=
testfloatcmp.cc
tuplestest_std_SOURCES
=
tuplestest.cc
...
...
This diff is collapsed.
Click to expand it.
dune/common/test/testfconstruct.cc
deleted
100644 → 0
+
0
−
17
View file @
31625a0b
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#include
<config.h>
#include
<iostream>
#include
<dune/common/fvector.hh>
#include
<dune/common/fassign.hh>
using
namespace
Dune
;
int
main
(
int
,
char
**
)
{
Dune
::
FieldVector
<
double
,
3
>
pos
;
pos
<<=
1
,
0
,
0
;
Dune
::
FieldVector
<
float
,
FVSIZE
>
pos2
(
pos
);
}
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