Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
bb254d14
Commit
bb254d14
authored
May 27, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable std-format-test by default
parent
291ba837
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
test/CMakeLists.txt
test/CMakeLists.txt
+6
-6
No files found.
test/CMakeLists.txt
View file @
bb254d14
...
...
@@ -107,12 +107,6 @@ add_fmt_test(custom-formatter-test)
add_fmt_test
(
ranges-test
)
add_fmt_test
(
scan-test
)
# MSVC fails to compile GMock when C++17 is enabled.
if
(
FMT_HAS_VARIANT AND NOT MSVC
)
add_fmt_test
(
std-format-test
)
set_property
(
TARGET std-format-test PROPERTY CXX_STANDARD 17
)
endif
()
if
(
HAVE_OPEN
)
add_fmt_executable
(
posix-mock-test
posix-mock-test.cc ../src/format.cc
${
TEST_MAIN_SRC
}
)
...
...
@@ -143,6 +137,12 @@ endif ()
message
(
STATUS
"FMT_PEDANTIC:
${
FMT_PEDANTIC
}
"
)
if
(
FMT_PEDANTIC
)
# MSVC fails to compile GMock when C++17 is enabled.
if
(
FMT_HAS_VARIANT AND NOT MSVC
)
add_fmt_test
(
std-format-test
)
set_property
(
TARGET std-format-test PROPERTY CXX_STANDARD 17
)
endif
()
# Test that the library can be compiled with exceptions disabled.
# -fno-exception is broken in icc: https://github.com/fmtlib/fmt/issues/822.
if
(
NOT CMAKE_CXX_COMPILER_ID STREQUAL
"Intel"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment