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
1d112bdd
Commit
1d112bdd
authored
Oct 11, 2020
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old test
parent
5eb292a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
57 deletions
+0
-57
test/CMakeLists.txt
test/CMakeLists.txt
+0
-1
test/custom-formatter-test.cc
test/custom-formatter-test.cc
+0
-56
No files found.
test/CMakeLists.txt
View file @
1d112bdd
...
@@ -103,7 +103,6 @@ add_fmt_test(locale-test)
...
@@ -103,7 +103,6 @@ add_fmt_test(locale-test)
add_fmt_test
(
ostream-test
)
add_fmt_test
(
ostream-test
)
add_fmt_test
(
compile-test
)
add_fmt_test
(
compile-test
)
add_fmt_test
(
printf-test
)
add_fmt_test
(
printf-test
)
add_fmt_test
(
custom-formatter-test
)
add_fmt_test
(
ranges-test
)
add_fmt_test
(
ranges-test
)
add_fmt_test
(
scan-test
)
add_fmt_test
(
scan-test
)
...
...
test/custom-formatter-test.cc
deleted
100644 → 0
View file @
5eb292a6
// Formatting library for C++ - custom argument formatter tests
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "fmt/format.h"
#include "gtest-extra.h"
// MSVC 2013 is known to be broken.
#if !FMT_MSC_VER || FMT_MSC_VER > 1800
// A custom argument formatter that doesn't print `-` for floating-point values
// rounded to 0.
class
custom_arg_formatter
:
public
fmt
::
detail
::
arg_formatter
<
fmt
::
format_context
::
iterator
,
char
>
{
public:
using
base
=
fmt
::
detail
::
arg_formatter
<
fmt
::
format_context
::
iterator
,
char
>
;
custom_arg_formatter
(
fmt
::
format_context
&
ctx
,
fmt
::
format_parse_context
*
parse_ctx
,
fmt
::
format_specs
*
s
=
nullptr
,
const
char
*
=
nullptr
)
:
base
(
ctx
,
parse_ctx
,
s
)
{}
using
base
::
operator
();
iterator
operator
()(
double
value
)
{
// Comparing a float to 0.0 is safe.
if
(
round
(
value
*
pow
(
10
,
specs
()
->
precision
))
==
0.0
)
value
=
0
;
return
base
::
operator
()(
value
);
}
};
std
::
string
custom_vformat
(
fmt
::
string_view
format_str
,
fmt
::
format_args
args
)
{
fmt
::
memory_buffer
buffer
;
// Pass custom argument formatter as a template arg to vwrite.
fmt
::
vformat_to
<
custom_arg_formatter
>
(
fmt
::
detail
::
buffer_appender
<
char
>
(
buffer
),
format_str
,
args
);
return
std
::
string
(
buffer
.
data
(),
buffer
.
size
());
}
template
<
typename
...
Args
>
std
::
string
custom_format
(
const
char
*
format_str
,
const
Args
&
...
args
)
{
auto
va
=
fmt
::
make_format_args
(
args
...);
return
custom_vformat
(
format_str
,
va
);
}
TEST
(
CustomFormatterTest
,
Format
)
{
EXPECT_EQ
(
"0.00"
,
custom_format
(
"{:.2f}"
,
-
.00001
));
}
#endif
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