| /freebsd/contrib/netbsd-tests/bin/sh/ |
| H A D | t_arith.sh | 116 atf_check -s exit:0 -o inline:'1\n' -e empty ${TEST_SH} -c \ 118 atf_check -s exit:0 -o inline:'0\n' -e empty ${TEST_SH} -c \ 120 atf_check -s exit:0 -o inline:'0\n' -e empty ${TEST_SH} -c \ 124 atf_check -s exit:0 -o inline:'0\n' -e empty ${TEST_SH} -c \ 128 atf_check -s exit:0 -o inline:'0\n' -e empty ${TEST_SH} -c \ 131 atf_check -s exit:0 -o inline:'1\n' -e empty \ 133 atf_check -s exit:0 -o inline:'0\n' -e empty \ 136 atf_check -s exit:0 -o inline:'99999\n' -e empty \ 140 atf_check -s exit:0 -o inline:'9191919191919\n' -e empty \ 143 atf_check -s exit:0 -o inline:'13\n' -e empty ${TEST_SH} -c \ [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/tr/ |
| H A D | t_basic.sh | 40 atf_check -o inline:'abcde\n' -x 'echo abcde | tr -d x' 41 atf_check -o inline:'abde\n' -x 'echo abcde | tr -d c' 42 atf_check -o inline:'ace\n' -x 'echo abcde | tr -d bd' 43 atf_check -o inline:'ae\n' -x 'echo abcde | tr -d b-d' 44 atf_check -o inline:'b\n' -x 'echo abcde | tr -d ac-e' 45 atf_check -o inline:'d\n' -x 'echo abcde | tr -d a-ce' 46 atf_check -o inline:'aei\n' -x 'echo abcdefghi | tr -d b-df-h' 48 atf_check -o inline:'' -x 'echo abcde | tr -c -d x' 49 atf_check -o inline:'c' -x 'echo abcde | tr -c -d c' 50 atf_check -o inline:'bd' -x 'echo abcde | tr -c -d bd' [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | numbers | 17 template<class T> inline constexpr T e_v = unspecified; 18 template<class T> inline constexpr T log2e_v = unspecified; 19 template<class T> inline constexpr T log10e_v = unspecified; 20 template<class T> inline constexpr T pi_v = unspecified; 21 template<class T> inline constexpr T inv_pi_v = unspecified; 22 template<class T> inline constexpr T inv_sqrtpi_v = unspecified; 23 template<class T> inline constexpr T ln2_v = unspecified; 24 template<class T> inline constexpr T ln10_v = unspecified; 25 template<class T> inline constexpr T sqrt2_v = unspecified; 26 template<class T> inline constexpr T sqrt3_v = unspecified; [all …]
|
| H A D | type_traits | 150 template <typename From, typename To> inline constexpr bool is_nothrow_convertible_v; // C++20 207 inline constexpr bool is_bounded_array_v 209 inline constexpr bool is_unbounded_array_v 244 template <class T> inline constexpr bool is_void_v 246 template <class T> inline constexpr bool is_null_pointer_v 248 template <class T> inline constexpr bool is_integral_v 250 template <class T> inline constexpr bool is_floating_point_v 252 template <class T> inline constexpr bool is_array_v 254 template <class T> inline constexpr bool is_pointer_v 256 template <class T> inline constexpr bool is_lvalue_reference_v [all …]
|
| H A D | execution | 20 inline constexpr sequenced_policy seq = implementation-defined; 21 inline constexpr parallel_policy par = implementation-defined; 22 inline constexpr parallel_unsequenced_policy par_unseq = implementation-defined; 23 inline constexpr unsequenced_policy unseq = implementation-defined; // since C++20 31 inline constexpr bool is_execution_policy_v; 56 inline constexpr sequenced_policy seq{__disable_user_instantiations_tag{}}; 64 inline constexpr parallel_policy par{__disable_user_instantiations_tag{}}; 72 inline constexpr parallel_unsequenced_policy par_unseq{__disable_user_instantiations_tag{}}; 90 inline constexpr unsequenced_policy unseq{__disable_user_instantiations_tag{}}; 97 inline constexpr bool is_execution_policy_v<execution::sequenced_policy> = true; [all …]
|
| /freebsd/usr.sbin/sysrc/tests/ |
| H A D | sysrc_test.sh | 22 atf_check -o inline:"test_enable: NO\n" \ 24 atf_check -o inline:"test2_list: \n" \ 26 atf_check -o inline:"test_enable: NO\ntest_list: item1 item2\n" \ 28 atf_check -e inline:"sysrc: unknown variable 'noexist'\n" \ 30 atf_check -e inline:"sysrc: unknown variable 'noexist'\n" \ 31 -s exit:1 -o inline:"test_enable: NO\n" \ 43 atf_check -o inline:"test_enable: -> YES\n" \ 45 atf_check -o inline:'test_enable="YES"\n' cat "${SYSRC_CONF}" 47 atf_check -o inline:"test_enable: YES -> YES\n" \ 49 atf_check -o inline:'test_enable="YES"\n' cat "${SYSRC_CONF}" [all …]
|
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/i386/ |
| H A D | regs.d.in | 29 inline int R_GS = @GS@; 31 inline int R_FS = @FS@; 33 inline int R_ES = @ES@; 35 inline int R_DS = @DS@; 38 inline int R_EDI = @EDI@; 40 inline int R_ESI = @ESI@; 42 inline int R_EBP = @EBP@; 44 inline int R_ESP = @ESP@; 46 inline int R_EBX = @EBX@; 48 inline int R_EDX = @EDX@; [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/grep/ |
| H A D | t_grep.sh | 100 atf_check -o inline:"pmatch\n" grep -Eow "(match )?pmatch" test1 226 atf_check -o inline:"foo bar\n" zgrep -we foo test 228 atf_check -o inline:"foo bar\n" zgrep -wefoo test < /dev/null 241 atf_check -o inline:"foo bar\n" zgrep -e 'foo bar' test < /dev/null 242 atf_check -o inline:"foo bar\n" zgrep --regexp='foo bar' test < /dev/null 256 atf_check -o inline:"foobar\n" zgrep -f pattern test </dev/null 257 atf_check -o inline:"foobar\n" zgrep --file=pattern test </dev/null 269 atf_check -o inline:"foobar\n" zgrep -e foo --ignore-case < test 281 atf_check -o inline:"foobar\n" zgrep -e foo -e xxx test 293 atf_check -o inline:"foobar\n" zgrep -e '' test [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/sed/ |
| H A D | t_sed.sh | 39 atf_check -s exit:0 -o inline:'foo\n' -e empty \ 51 atf_check -o inline:"foo1bar1\n" \ 56 atf_check -o inline:"foobar\n" \ 83 atf_check -o inline:"D\n" \ 85 atf_check -o inline:"A\n" \ 88 atf_check -o inline:"C\n" \ 91 atf_check -o inline:"D\nE\n" \ 94 atf_check -o inline:"B\nB\nC\nD\n" \ 96 atf_check -o inline:"B\nC\nC\nD\n" \ 100 atf_check -o inline:"D\n" \ [all …]
|
| /freebsd/usr.sbin/fstyp/tests/ |
| H A D | fstyp_test.sh | 34 atf_check -s exit:0 -o inline:"befs\n" fstyp befs.img 35 atf_check -s exit:0 -o inline:"befs BeFS\n" fstyp -l befs.img 45 atf_check -s exit:0 -o inline:"cd9660\n" fstyp cd9660.img 46 atf_check -s exit:0 -o inline:"cd9660\n" fstyp -l cd9660.img 56 atf_check -s exit:0 -o inline:"cd9660\n" fstyp cd9660.img 58 atf_check -s exit:0 -o inline:"cd9660 FOO\n" fstyp -l cd9660.img 76 atf_check -s exit:0 -o inline:"exfat\n" fstyp -u exfat.img 85 atf_check -s exit:0 -o inline:"exfat exFat\n" fstyp -u -l exfat.img 103 atf_check -s exit:0 -o inline:"ext2fs\n" fstyp ext2.img 104 atf_check -s exit:0 -o inline:"ext2fs\n" fstyp -l ext2.img [all …]
|
| /freebsd/usr.bin/rs/tests/ |
| H A D | rs_test.sh | 36 atf_check -s exit:0 -o inline:"1 2 3 4 51 atf_check -s exit:0 -o inline:"1 2 3 4 67 atf_check -s exit:0 -o inline:"1,2,3,4, 82 atf_check -s exit:0 -o inline:"1,,2,,3,,4 97 atf_check -s exit:0 -o inline:"1 4 7 113 atf_check -s exit:0 -o inline:"1 129 atf_check -s exit:0 -o inline:"3 4 5 146 atf_check -s exit:0 -o inline:" 158 atf_check -s exit:0 -o inline:"1 2 3 4 173 atf_check -s exit:0 -o inline:"1 2 3 4 [all …]
|
| /freebsd/usr.bin/du/tests/ |
| H A D | du_test.sh | 51 atf_check -o inline:'1\tsparse.file\n' du -g sparse.file 52 atf_check -o inline:'10\tsparse.file\n' du -A -g sparse.file 114 atf_check -o inline:'9\ttestdir1\n' du -A testdir1 115 atf_check -o inline:'17\ttestdir1\n' du -AL testdir1 128 atf_check -o inline:'9\ttestdir1\n' du -A testdir1 129 atf_check -o inline:'9\ttestdir1\n' du -AP testdir1 141 atf_check -o inline:'1\ttestdir1\n' du -A testdir1 142 atf_check -o inline:'0\ttestdir1/A\n1\ttestdir1\n' du -Aa testdir1 153 atf_check -o inline:'8\tfoo\n8\tbar\n' du -A foo bar 154 atf_check -o inline [all...] |
| /freebsd/usr.bin/find/tests/ |
| H A D | find_test.sh | 88 atf_check -o inline:"dir\ndir/file\ndir/link\n" \ 90 atf_check -o inline:"dir\nfile\nlink\n" \ 92 atf_check -o inline:".\ndir\ndir\n" \ 100 atf_check -o inline:"$(stat -f %Sg dir dir/file dir/link)\n" \ 102 atf_check -o inline:"$(stat -f %g dir dir/file dir/link)\n" \ 106 atf_check -o inline:"$(stat -f %Su dir dir/file dir/link)\n" \ 108 atf_check -o inline:"$(stat -f %u dir dir/file dir/link)\n" \ 112 atf_check -o inline:"$(stat -f %Lp dir dir/file dir/link)\n" \ 114 atf_check -o inline:"$(stat -f %Sp dir dir/file dir/link)\n" \ 118 atf_check -o inline:"$((db/2))\n$((fb/2))\n$((lb/2))\n" \ [all …]
|
| /freebsd/usr.bin/tee/tests/ |
| H A D | tee_test.sh | 10 atf_check -o inline:"text\n" -x "echo text | tee file" 11 atf_check -o inline:"text\n" cat file 17 atf_check -e inline:"text\n" -o inline:"text\n" -x \ 24 atf_check -o inline:"text\n" -x "echo text | tee file1 file2" 25 atf_check -o inline:"text\n" cat file1 26 atf_check -o inline:"text\n" cat file2 33 atf_check -o inline:"text\n" cat file 37 atf_check -o inline:"text\n" cat file 41 atf_check -o inline:"text\ntext\n" cat file 61 atf_check -o inline:"text\n" cat file [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/basename/ |
| H A D | t_basename.sh | 35 atf_check -o inline:"bin\n" basename /usr/bin 36 atf_check -o inline:"usr\n" basename /usr 37 atf_check -o inline:"/\n" basename / 38 atf_check -o inline:"/\n" basename /// 39 atf_check -o inline:"usr\n" basename /usr// 40 atf_check -o inline:"bin\n" basename //usr//bin 41 atf_check -o inline:"usr\n" basename usr 42 atf_check -o inline:"bin\n" basename usr/bin 52 atf_check -o inline:"bi\n" basename /usr/bin n 53 atf_check -o inline:"bin\n" basename /usr/bin bin [all …]
|
| /freebsd/usr.bin/col/tests/ |
| H A D | col_test.sh | 11 -o inline:"a\nb\n" \ 17 -o inline:"a\nb\n" \ 23 -o inline:"a\nb\n" \ 29 -o inline:"a\nb\n" \ 35 -o inline:"a\n\nb\n\n" \ 50 -o inline:"a b\n" \ 56 -o inline:"a b\n" \ 62 -o inline:"a b\n" \ 68 -o inline:" b\na\n" \ 83 -o inline:"a f\naf\n" \ [all …]
|
| /freebsd/contrib/ntp/html/scripts/ |
| H A D | miscopt.txt | 2 <li class='inline'><a href='miscopt.html#broadcastdelay'>broadcastdelay - specify broadcast delay</… 3 <li class='inline'><a href='miscopt.html#driftfile'>driftfile - specify frequency file</a></li>\ 4 <li class='inline'><a href='miscopt.html#enable'>enable - enable options</a></li>\ 5 <li class='inline'><a href='miscopt.html#enable'>disable - disable options</a></li>\ 6 <li class='inline'><a href='miscopt.html#includefile'>includefile - specify include file</a></li>\ 7 <li class='inline'><a href='miscopt.html#interface'>interface - specify which local network address… 8 <li class='inline'><a href='miscopt.html#leapfile'>leapfile - specify leapseconds file</a></li>\ 9 <li class='inline'><a href='miscopt.html#logconfig'>logconfig - configure log file</a></li>\ 10 <li class='inline'><a href='miscopt.html#mru'>mru - control monitor MRU list limits</a></li>\ 11 <li class='inline'><a href='miscopt.html#phone'>phone - specify modem phone numbers</a></li>\ [all …]
|
| H A D | special.txt | 2 <li class='inline'><a href='warp.html'>How NTP Works</a></li>\ 3 <li class='inline'><a href='prefer.html'>Mitigation Rules and the <tt>prefer</tt> Keyword</a></li>\ 4 <li class='inline'><a href='autokey.html'>Autokey Public-Key Authentication</a></li>\ 5 <li class='inline'><a href='orphan.html'>Orphan Mode</a></li>\ 6 <li class='inline'><a href='xleave.html'>NTP Interleaved Modes</a></li>\ 7 <li class='inline'><a href='huffpuff.html'>Huff-n'-Puff Filter</a></li>\ 8 <li class='inline'><a href='filter.html'>Clock Filter Algorithm</a></li>\ 9 <li class='inline'><a href='select.html'>Clock Select Algorithm</a></li>\ 10 <li class='inline'><a href='cluster.html'>Clock Cluster Algorithm</a></li>\ 11 <li class='inline'><a href='prefer.html'>Mitigation Rules and the <tt>prefer</tt> Keyword</a></li>\ [all …]
|
| H A D | external.txt | 2 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/book.html'>Computer Network Time Synch… 3 <li class='inline'><a href='http://www.ntp.org/index.html'>NTP Public Services Project (home page)<… 4 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/ntp.html'>NTP Research Project (home p… 5 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/exec.html'>Executive Summary: Computer… 6 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/leap.html'>The NTP Timescale and Leap … 7 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/time.html'>NTP Timestamp Calculations<… 8 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/y2k.html'>The NTP Era and Era Numberin… 9 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/stamp.html'>Timestamp Capture Principl… 10 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/onwire.html'>Analysis and Simulation o… 11 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/proximity.html'>Time Synchroization fo… [all …]
|
| /freebsd/bin/pwd/tests/ |
| H A D | pwd_test.sh | 22 atf_check -o inline:"$root/log/baz\n" pwd -L 23 atf_check -o inline:"$root/log/baz\n" pwd -P -L 27 atf_check -o inline:"$root/log/baz\n" pwd 45 atf_check -o inline:"$root/phy/baz\n" pwd -P 46 atf_check -o inline:"$root/phy/baz\n" pwd -L -P 50 atf_check -o inline:"$root/phy/baz\n" pwd -L 54 atf_check -o inline:"$root/phy/baz\n" pwd -L 58 atf_check -o inline:"$root/phy/baz\n" pwd -L 62 atf_check -o inline:"$root/phy/baz\n" pwd -L 66 atf_check -o inline:"$root/phy/baz\n" pwd -L [all …]
|
| /freebsd/tests/sys/kern/ |
| H A D | jailmeta.sh | 35 atf_check -s exit:0 -o inline:"a b c\n" \ 37 atf_check -s exit:0 -o inline:"C B A\n" \ 63 atf_check -s exit:0 -o inline:"a b c\n" \ 65 atf_check -s exit:0 -o inline:"CAB\n" \ 71 atf_check -s exit:0 -o inline:"t1=A t2=B\n" \ 73 atf_check -s exit:0 -o inline:"CAB2\n" \ 99 atf_check -s exit:0 -o inline:'""\n' \ 101 atf_check -s exit:0 -o inline:'""\n' \ 107 atf_check -s exit:0 -o inline:"1\n2\n3\n" \ 109 atf_check -s exit:0 -o inline:"11\n12\n" \ [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/dirname/ |
| H A D | t_dirname.sh | 35 atf_check -o inline:"/\n" dirname / 36 atf_check -o inline:"/\n" dirname // 37 atf_check -o inline:"/usr\n" dirname /usr/bin/ 38 atf_check -o inline:"//usr\n" dirname //usr//bin// 39 atf_check -o inline:".\n" dirname usr 40 atf_check -o inline:".\n" dirname "" 41 atf_check -o inline:"/\n" dirname /usr 42 atf_check -o inline:"/usr\n" dirname /usr/bin 43 atf_check -o inline:"usr\n" dirname usr/bin
|
| /freebsd/usr.bin/lam/tests/ |
| H A D | lam_test.sh | 17 atf_check -o inline:"14\n25\n36\n" lam a b 30 atf_check -o inline:"x1x0\n" lam -S x a b 31 atf_check -o inline:"1x0\n" lam a -S x b 32 atf_check -o inline:"x10\n" lam -S x a -s '' b 34 atf_check -o inline:"x10\n" lam -s x a b 35 atf_check -o inline:"x1y0\n" lam -s x a -s y b 36 atf_check -o inline:"1x0\n" lam a -s x b 48 atf_check -o inline:"11\n22\n33\n44\n" lam a - < a 49 atf_check -o inline:"11\n22\n33\n44\n" lam - a < a 51 atf_check -o inline:"12\n34\n" lam - - < a
|
| /freebsd/usr.sbin/chown/tests/ |
| H A D | chown_test.sh | 47 atf_check -o inline:'0:0\n0:0\n42:42\n' stat -f '%u:%g' A A/B A/C 49 atf_check -o inline:'84:84\n84:84\n84:84\n' stat -f '%u:%g' A A/B A/C 51 atf_check -o inline:'84:84\n126:126\n84:84\n' stat -f '%u:%g' A A/B A/C 67 atf_check -o inline:'0:0\n0:0\n42:42\n' stat -f '%u:%g' A A/B A/C 69 atf_check -o inline:'84:84\n84:84\n42:42\n' stat -f '%u:%g' A A/B A/C 71 atf_check -o inline:'84:84\n126:126\n42:42\n' stat -f '%u:%g' A A/B A/C 87 atf_check -o inline:'0:0\n0:0\n42:42\n' stat -f '%u:%g' A A/B A/C 89 atf_check -o inline:'84:84\n84:84\n84:84\n' stat -f '%u:%g' A A/B A/C 91 atf_check -o inline:'84:84\n84:84\n126:126\n' stat -f '%u:%g' A A/B A/C 114 atf_check -o inline:'0:0\n42:42\n' stat -f '%u:%g' foo bar [all …]
|
| /freebsd/bin/chmod/tests/ |
| H A D | chmod_test.sh | 46 atf_check -o inline:'40755\n40777\n120777\n' stat -f '%p' A A/B A/C 48 atf_check -o inline:'40700\n40700\n120700\n' stat -f '%p' A A/B A/C 50 atf_check -o inline:'40700\n40600\n120700\n' stat -f '%p' A A/B A/C 65 atf_check -o inline:'40755\n40777\n120777\n' stat -f '%p' A A/B A/C 67 atf_check -o inline:'40700\n40700\n120777\n' stat -f '%p' A A/B A/C 69 atf_check -o inline:'40700\n40600\n120777\n' stat -f '%p' A A/B A/C 84 atf_check -o inline:'40755\n40777\n120777\n' stat -f '%p' A A/B A/C 86 atf_check -o inline:'40700\n40700\n120700\n' stat -f '%p' A A/B A/C 88 atf_check -o inline:'40700\n40700\n120600\n' stat -f '%p' A A/B A/C 110 atf_check -o inline:'100750\n100700\n' stat -f '%p' foo bar [all …]
|