diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-28 21:34:46 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-28 21:34:46 -0500 |
commit | 7551fd06be130a02411b775e9bf8a9f995a12968 (patch) | |
tree | f56d82707d5971fecdc61c9a374a81e08a20bee2 | |
parent | 5e37315f0e20bc3052b20a7b9e9fbbb6b553fc5b (diff) |
correct some of the expected outputs
-rw-r--r-- | time.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -32,26 +32,26 @@ void test_time_h(void) mktime(&tm); testing_comment("testing asctime()"); - test_string(asctime(&tm), "something something"); + test_string(asctime(&tm), "Wed Jul 4 13:40:50 2001\n"); testing_comment("testing strftime()"); - test_strftime("%a", tm, "???"); - test_strftime("%A", tm, "???day"); - test_strftime("%b", tm, "Jun"); - test_strftime("%B", tm, "June"); + test_strftime("%a", tm, "Wed"); + test_strftime("%A", tm, "Wednesday"); + test_strftime("%b", tm, "Jul"); + test_strftime("%B", tm, "July"); test_strftime("%c", tm, "see 7.23.1"); test_strftime("%C", tm, "01"); test_strftime("%d", tm, "04"); - test_strftime("%D", tm, "06/04/01"); + test_strftime("%D", tm, "07/04/01"); test_strftime("%e", tm, " 4"); - test_strftime("%F", tm, "2001-06-04"); + test_strftime("%F", tm, "2001-07-04"); test_strftime("%g", tm, "week_of_year"); test_strftime("%G", tm, "2001"); - test_strftime("%h", tm, "Jun"); + test_strftime("%h", tm, "Jul"); test_strftime("%H", tm, "13"); test_strftime("%I", tm, "01"); test_strftime("%j", tm, "160"); - test_strftime("%m", tm, "06"); + test_strftime("%m", tm, "07"); test_strftime("%n", tm, "\n"); test_strftime("%p", tm, "PM"); test_strftime("%r", tm, "01:40"); |