Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
1ad63ff1
Commit
1ad63ff1
authored
Sep 16, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fate: add av_small_strptime() test to fate-parseutils
parent
85c93d90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
parseutils.c
libavutil/parseutils.c
+29
-0
parseutils
tests/ref/fate/parseutils
+6
-0
No files found.
libavutil/parseutils.c
View file @
1ad63ff1
...
...
@@ -781,6 +781,35 @@ int main(void)
}
}
printf
(
"
\n
Testing av_small_strptime()
\n
"
);
{
int
i
;
struct
tm
tm
=
{
0
};
struct
fmt_timespec_entry
{
const
char
*
fmt
,
*
timespec
;
}
fmt_timespec_entries
[]
=
{
{
"%Y-%m-%d"
,
"2012-12-21"
},
{
"%Y - %m - %d"
,
"2012-12-21"
},
{
"%Y-%m-%d %H:%M:%S"
,
"2012-12-21 20:12:21"
},
{
" %Y - %m - %d %H : %M : %S"
,
" 2012 - 12 - 21 20 : 12 : 21"
},
};
av_log_set_level
(
AV_LOG_DEBUG
);
for
(
i
=
0
;
i
<
FF_ARRAY_ELEMS
(
fmt_timespec_entries
);
i
++
)
{
char
*
p
;
struct
fmt_timespec_entry
*
e
=
&
fmt_timespec_entries
[
i
];
printf
(
"fmt:'%s' spec:'%s' -> "
,
e
->
fmt
,
e
->
timespec
);
p
=
av_small_strptime
(
e
->
timespec
,
e
->
fmt
,
&
tm
);
if
(
p
)
{
printf
(
"%04d-%02d-%2d %02d:%02d:%02d
\n
"
,
1900
+
tm
.
tm_year
,
tm
.
tm_mon
+
1
,
tm
.
tm_mday
,
tm
.
tm_hour
,
tm
.
tm_min
,
tm
.
tm_sec
);
}
else
{
printf
(
"error
\n
"
);
}
}
}
printf
(
"
\n
Testing av_parse_time()
\n
"
);
{
int
i
;
...
...
tests/ref/fate/parseutils
View file @
1ad63ff1
...
...
@@ -63,6 +63,12 @@ red@10foo -> error
red@-1.0 -> error
red@-0.0 -> R(255) G(0) B(0) A(0)
Testing av_small_strptime()
fmt:'%Y-%m-%d' spec:'2012-12-21' -> 2012-12-21 00:00:00
fmt:'%Y - %m - %d' spec:'2012-12-21' -> 2012-12-21 00:00:00
fmt:'%Y-%m-%d %H:%M:%S' spec:'2012-12-21 20:12:21' -> 2012-12-21 20:12:21
fmt:' %Y - %m - %d %H : %M : %S' spec:' 2012 - 12 - 21 20 : 12 : 21' -> 2012-12-21 20:12:21
Testing av_parse_time()
(now is 2012-03-17 09:14:13 +0100, local time is UTC+1)
now -> 1331972053.000000 = 2012-03-17T08:14:13Z
...
...
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