Home
last modified time | relevance | path

Searched refs:test_good (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/chrono/test/io/
Dduration_input.cpp12 void test_good(const char* str, D res) in test_good() function
53 test_good("5000", 5000); in main()
56 test_good("5000 hours", hours(5000)); in main()
58 test_good("5000 minutes", minutes(5000)); in main()
59 test_good("5000 seconds", seconds(5000)); in main()
62 test_good("1.0 second", duration<float,ratio<1> >(1)); in main()
82 test_good("1 second", seconds(1)); in main()
85 test_good("1 seconds", seconds(1)); in main()
86 test_good("0 seconds", seconds(0)); in main()
87 test_good("-1 seconds", seconds(-1)); in main()
[all …]
Dtime_point_input.cpp14 void test_good(std::string str, D res)
31 void test_good(std::string str, D res) in test_good() function
121 test_good<Clock> ("5000 hours", hours(5000)); in check_all()
122 test_good<Clock> ("5000 minutes", minutes(5000)); in check_all()
123 test_good<Clock> ("5000 seconds", seconds(5000)); in check_all()
124 test_good<Clock> ("1 seconds", seconds(1)); in check_all()
125 test_good<Clock> ("1 second", seconds(1)); in check_all()
126 test_good<Clock> ("-1 seconds", seconds(-1)); in check_all()
127 test_good<Clock> ("0 second", seconds(0)); in check_all()
128 test_good<Clock> ("0 seconds", seconds(0)); in check_all()
[all …]
Dduration_output.cpp34 void test_good(const char* str, D d, boost::chrono::duration_style style) in test_good() function
105 test_good("5000 hours", hours(5000), duration_style::prefix); in main()
106 test_good("5000 h", hours(5000), duration_style::symbol); in main()
Dtime_point_output.cpp105 void test_good(const char* str, D d, boost::chrono::duration_style style) in test_good() function
136 test_good<Clock>("2 hours", hours(2), duration_style::prefix); in check_all()
137 test_good<Clock>("2 h", hours(2), duration_style::symbol); in check_all()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_sequencer/
Dmain.c20 static int interrupted, test_good = 0; variable
306 test_good = 1; in sequencer_cb()
394 lwsl_user("Completed: %s\n", !test_good ? "FAIL" : "PASS"); in main()
398 return !test_good; in main()