/busybox-1.35.0/miscutils/ |
D | rx.c | 96 unsigned expected; in receive() local 186 expected = 0; in receive() 189 expected = expected ^ blockBuf[i] << 8; in receive() 191 if (expected & 0x8000) in receive() 192 expected = (expected << 1) ^ 0x1021; in receive() 194 expected = (expected << 1); in receive() 197 expected &= 0xffff; in receive() 200 expected += blockBuf[i]; in receive() 201 expected &= 0xff; in receive() 203 if (cksum_or_crc != expected) { in receive() [all …]
|
/busybox-1.35.0/testsuite/ |
D | md5sum.tests | 19 expected="$2" 38 if test x"$result" != x"$expected -"; then 39 echo "FAIL: $sum (r:$result exp:$expected)"
|
D | testing.sh | 88 $ECHO -ne "$3" > expected 96 if cmp expected actual >/dev/null 2>/dev/null 102 [ -z "$VERBOSE" ] || diff -u expected actual 104 rm -f input expected actual
|
D | bzcat.tests | 47 if $ECHO -ne "$expected" | cmp - t_actual; then 60 expected="HELLO\nok\n"
|
D | bunzip2.tests | 492 if $ECHO -ne "$expected" | cmp - t_actual; then 504 expected="$unpack: z: No such file or directory 511 expected="$unpack: t.zz: unknown suffix - ignored 519 expected="$unpack: can't open 't1': File exists 527 expected="HELLO\n0\n" 530 expected="ok\n"
|
D | README | 3 -v option will cause it to show expected outcomes as well. To only run the test 33 expected to fail, it should include the string "XFAIL" in a comment.
|
/busybox-1.35.0/shell/ash_test/ash-signals/ |
D | signal2.right | 2 child exits as expected
|
/busybox-1.35.0/shell/hush_test/hush-signals/ |
D | signal2.right | 2 child exits as expected
|
/busybox-1.35.0/shell/ash_test/ash-z_slow/ |
D | many_ifs.tests | 6 # contains the test along with the expected and actual results. 66 …?0*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#]\" # expected \"$s\" got \"$g\"" … 67 …?1*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)\" # expected \"$s\" got \"$… 68 …?2*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)(\$2)\" # expected \"$s\" go… 69 …?3*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)(\$2)(\$3)\" # expected \"$s… 114 …*) echo "echo \"$i\" | ( IFS=\"$ifs\" read x y; echo \"(\$x)(\$y)\" ) # expected \"$r\" got \"$g\"… 255 *) fatal=" -- fundamental IFS error -- $TESTS tests expected"
|
/busybox-1.35.0/shell/hush_test/hush-z_slow/ |
D | many_ifs.tests | 6 # contains the test along with the expected and actual results. 66 …?0*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#]\" # expected \"$s\" got \"$g\"" … 67 …?1*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)\" # expected \"$s\" got \"$… 68 …?2*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)(\$2)\" # expected \"$s\" go… 69 …?3*) echo "IFS=\"$ifs\"; x=\"$i\"; set x \$x; shift; echo \"[\$#](\$1)(\$2)(\$3)\" # expected \"$s… 114 …*) echo "echo \"$i\" | ( IFS=\"$ifs\" read x y; echo \"(\$x)(\$y)\" ) # expected \"$r\" got \"$g\"… 255 *) fatal=" -- fundamental IFS error -- $TESTS tests expected"
|
/busybox-1.35.0/shell/hush_test/hush-arith/ |
D | arith.right | 1 Format: 'expected actual'
|
D | arith.tests | 4 echo "Format: 'expected actual'"
|
/busybox-1.35.0/shell/ash_test/ash-arith/ |
D | arith.right | 1 Format: 'expected actual'
|
D | arith.tests | 4 echo "Format: 'expected actual'"
|
/busybox-1.35.0/shell/ash_test/ash-vars/ |
D | param_expand_alt.tests | 16 # Forms with non-empty word work as expected in both ash and bash.
|
/busybox-1.35.0/shell/hush_test/hush-vars/ |
D | param_expand_alt.tests | 16 # Forms with non-empty word work as expected in both ash and bash.
|
/busybox-1.35.0/docs/ |
D | busybox_header.pod | 19 options that are included provide the expected functionality and behave very
|
D | mdev.txt | 137 device nodes sometimes not created as expected.
|
/busybox-1.35.0/editors/ |
D | awk.c | 1087 static uint32_t next_token(uint32_t expected) in next_token() argument 1100 debug_printf_parse("%s() expected(%x):", __func__, expected); in next_token() 1101 debug_parse_print_tc(expected); in next_token() 1143 } else if ((expected & TC_REGEXP) && *p == '/') { in next_token() 1195 if ((tc & (expected | TS_WORD | TC_NEWLINE)) in next_token() 1222 else if (expected & TC_ARRAY) { in next_token() 1270 (last_token_class & TS_CONCAT_L), (tc & TS_CONCAT_R), (expected & TS_BINOP), in next_token() 1272 if ((last_token_class & TS_CONCAT_L) && (tc & TS_CONCAT_R) && (expected & TS_BINOP) in next_token() 1286 if (!(t_tclass & expected)) { in next_token()
|
D | sed1line.txt | 376 variation is to be expected. In particular, most do not support the
|
/busybox-1.35.0/networking/ |
D | tls.c | 598 static void bad_record_die(tls_state_t *tls, const char *expected, int len) in bad_record_die() argument 600 bb_error_msg("got bad TLS record (len:%d) while expecting %s", len, expected); in bad_record_die() 1006 static int tls_xread_record(tls_state_t *tls, const char *expected) in tls_xread_record() argument 1035 bad_record_die(tls, expected, sz); in tls_xread_record()
|
/busybox-1.35.0/examples/var_service/ |
D | README | 173 System administrators are expected to edit fw/run script, since
|
/busybox-1.35.0/ |
D | README | 12 however, the options that are included provide the expected functionality
|