Home
last modified time | relevance | path

Searched refs:TEST_STR (Results 1 – 7 of 7) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/sysctl/
Dsysctl.sh174 echo "${TEST_STR}" > "${TARGET}"
181 if [ "${seen}" != "${TEST_STR}" ]; then
205 echo "$TEST_STR" | diff -q -w -u - $1 > /dev/null
235 echo "${TEST_STR}" > "${TEST_FILE}"
305 (perl -e 'print "A" x 50;'; echo "${TEST_STR}") | \
320 TEST_STR="$1"
322 echo -n "$TEST_STR" > $TARGET 2> /dev/null
375 TEST_STR="3"
376 (perl -e 'print " " x '$LIMIT';'; echo "${TEST_STR}") | \
391 TEST_STR="4"
[all …]
/external/python/cpython2/Lib/test/
Dtest_socketserver.py26 TEST_STR = "hello world\n" variable
183 s.sendall(TEST_STR)
188 self.assertEqual(buf, TEST_STR)
195 s.sendto(TEST_STR, addr)
200 self.assertEqual(buf, TEST_STR)
/external/python/cpython3/Lib/test/
Dtest_socketserver.py23 TEST_STR = b"hello world\n" variable
161 s.sendall(TEST_STR)
166 self.assertEqual(buf, TEST_STR)
172 s.sendto(TEST_STR, addr)
177 self.assertEqual(buf, TEST_STR)
/external/crosvm/sys_util/src/
Dsyslog.rs523 const TEST_STR: &str = "hello shared memory file"; in syslog_file() constant
528 format_args!("{}", TEST_STR), in syslog_file()
536 assert!(buf.contains(TEST_STR)); in syslog_file()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DArrayDeserializationTest.java278 final String TEST_STR = "Let's just test it? Ok!"; in testCharArray() local
279 char[] result = MAPPER.readValue("\""+TEST_STR+"\"", char[].class); in testCharArray()
280 assertEquals(TEST_STR, new String(result)); in testCharArray()
/external/libevent/test/
Dregress_bufferevent.c638 #define TEST_STR "Now is the time for all good events to signal for " \ macro
646 const char s[] = TEST_STR; in listen_cb()
700 tt_str_op(buf, ==, TEST_STR); in reader_eventcb()
/external/icu/icu4c/source/test/iotest/
Dfiletst.c1518 static const UChar TEST_STR[] = { 0x03BC, 0x0025, 0x0024, 0}; in TestUnicodeFormat() local
1528 u_fprintf_u(myFile, PERCENT_S, TEST_STR); in TestUnicodeFormat()
1538 if (u_strcmp(TEST_STR, myUString) != 0) { in TestUnicodeFormat()