Searched refs:ASSERT_DOLLAR_EQ (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssh/regress/unittests/misc/ |
H A D | test_expand.c | 35 #define ASSERT_DOLLAR_EQ(x, y) do { \ in test_expand() macro 40 ASSERT_DOLLAR_EQ("${FOO}", "bar"); in test_expand() 41 ASSERT_DOLLAR_EQ(" ${FOO}", " bar"); in test_expand() 42 ASSERT_DOLLAR_EQ("${FOO} ", "bar "); in test_expand() 43 ASSERT_DOLLAR_EQ(" ${FOO} ", " bar "); in test_expand() 44 ASSERT_DOLLAR_EQ("${FOO}${BAR}", "barbaz"); in test_expand() 45 ASSERT_DOLLAR_EQ(" ${FOO} ${BAR}", " bar baz"); in test_expand() 46 ASSERT_DOLLAR_EQ("${FOO}${BAR} ", "barbaz "); in test_expand() 47 ASSERT_DOLLAR_EQ(" ${FOO} ${BAR} ", " bar baz "); in test_expand() 48 ASSERT_DOLLAR_EQ("$", "$"); in test_expand() [all …]
|