Home
last modified time | relevance | path

Searched refs:check (Results 1 – 25 of 824) sorted by relevance

12345678910>>...33

/illumos-gate/usr/src/tools/smatch/src/Documentation/
H A Dtest-suite.rst11 ``check-name:`` *name*
15 ``check-description:`` *description ...*
19 ``check-command:`` *command arg ...*
23 of the library. check-command allows you to give a custom command to
29 ``check-arch-ignore:`` *arch[|...]*
31 ``check-arch-only:`` *arch[|...]*
36 ``check-assert:`` *condition*
41 ``check-cpp-if:`` *condition*
46 ``check-exit-value:`` *value*
48 The expected exit value of check-command. It defaults to 0.
[all …]
/illumos-gate/usr/src/test/util-tests/tests/ctf/
H A DMakefile65 CHECKS = check-float-32 \
66 check-float-64 \
67 check-int-32 \
68 check-int-64 \
69 check-reference \
70 check-array \
71 check-enum \
72 check-sou-32 \
73 check-sou-64 \
74 check-forward-32 \
[all …]
H A Dctftest.ksh211 typeset t base check
215 check=$(echo "$base" | sed s/test-/check-/)
216 if [[ -f "$ctf_root/$check" ]]; then
217 run_one $t "$ctf_root/$check" "$ctf_32cflags"
218 run_one $t "$ctf_root/$check" "$ctf_64cflags"
219 elif [[ -f "$ctf_root/$check-32" && \
220 -f "$ctf_root/$check-64" ]]; then
221 run_one $t "$ctf_root/$check-32" "$ctf_32cflags"
222 run_one $t "$ctf_root/$check-64" "$ctf_64cflags"
231 check=$(echo "$base" | sed s/test-/check-/)
[all …]
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dtest-suite92 check-name:) check_name="$val" ;;
93 check-command:) check_command="$val" ;;
94 check-exit-value:) check_exit_value="$val" ;;
95 check-timeout:) [ -z "$val" ] && val=1
97 check-known-to-fail) check_known_to_fail=1 ;;
98 check-error-ignore) check_error_ignore=1 ;;
99 check-output-ignore) check_output_ignore=1 ;;
100 check-output-contains:) check_output_contains=1 ;;
101 check-output-excludes:) check_output_excludes=1 ;;
102 check-output-pattern) check_output_pattern=1 ;;
[all …]
/illumos-gate/usr/src/cmd/initpkg/
H A Dnscd.conf43 check-files audit_user yes
48 check-files auth_attr yes
53 check-files bootparams yes
58 check-files ethers yes
63 check-files exec_attr yes
68 check-files group yes
73 check-files hosts yes
78 check-files ipnodes yes
83 check-files netmasks yes
88 check-files networks yes
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A DMakefile.syshdrs33 audio/%.check: audio/%.h
36 av/%.check: av/%.h
39 fm/%.check: fm/%.h
42 fm/cpu/%.check: fm/cpu/%.h
45 fm/fs/%.check: fm/fs/%.h
48 fm/io/%.check: fm/io/%.h
51 fs/%.check: fs/%.h
54 ib/%.check: ib/%.h
57 ib/clients/ibd/%.check: ib/clients/ibd/%.h
60 ib/clients/of/%.check: ib/clients/of/%.h
[all …]
H A DMakefile1145 dcam/%.check: dcam/%.h
1149 $($(MACH)_HDRS:%.h=%.check) \
1150 $(AUDIOHDRS:%.h=audio/%.check) \
1151 $(AVHDRS:%.h=av/%.check) \
1152 $(LOMHDRS:%.h=%.check) \
1153 $(CHKHDRS:%.h=%.check) \
1154 $(CPUDRVHDRS:%.h=%.check) \
1155 $(CRYPTOHDRS:%.h=crypto/%.check) \
1156 $(DCAMHDRS:%.h=dcam/%.check) \
1157 $(FC4HDRS:%.h=fc4/%.check) \
[all …]
/illumos-gate/usr/src/uts/common/ipp/
H A DMakefile53 ipgpc/%.check: ipgpc/%.h
56 dscpmk/%.check: dscpmk/%.h
59 meters/%.check: meters/%.h
62 flowacct/%.check:flowacct/%.h
65 dlcosmk/%.check: dlcosmk/%.h
69 $(HDRS:%.h=%.check) \
70 $(IPGPCHDRS:%.h=ipgpc/%.check) \
71 $(DSCPMKHDRS:%.h=dscpmk/%.check) \
72 $(DLCOSMKHDRS:%.h=dlcosmk/%.check) \
73 $(FLOWACCTHDRS:%.h=flowacct/%.check) \
[all …]
/illumos-gate/usr/src/test/libc-tests/tests/select/
H A Dselect_test.c54 fd_set check, proto; in main() local
70 FD_ZERO(&check); in main()
74 sread = ✓ in main()
77 swrite = ✓ in main()
80 serr = ✓ in main()
116 memcpy(&check, &proto, sizeof (check)); in main()
121 if (memcmp(&check, &proto, sizeof (check)) != 0) { in main()
122 diff_sets(&check, &proto, sizeof (check)); in main()
123 warnx("fd set mismatch: check: %p proto: %p", &check, &proto); in main()
/illumos-gate/usr/src/test/os-tests/tests/secflags/
H A Dsecflags_dts.sh58 check() { function
79 check ./tester-aslr.32 0 E || fail "DT_SUNW_ASLR 1 failed (32-bit)"
80 check ./many-dts-aslr.32 0 E || fail \
82 check ./tester-aslr.32 1 I || fail \
84 check ./tester-aslr.64 0 E || fail "DT_SUNW_ASLR 1 failed (64-bit)"
85 check ./many-dts-aslr.64 0 E || fail \
87 check ./tester-aslr.64 1 I || fail \
91 check ./tester-noaslr.32 1 E || fail "DT_SUNW_ASLR 0 failed (32-bit)"
92 check ./many-dts-noaslr.32 1 E || fail \
94 check ./tester-noaslr.64 1 E || fail "DT_SUNW_ASLR 0 failed (64-bit)"
[all …]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dsize_test26 check ()
39 check ffs_stage1_5 7168
41 check ufs2_stage1_5 7168
45 check fat_stage1_5 31744
48 check e2fs_stage1_5 31744
51 check minix_stage1_5 31744
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/
H A Dsend-cpL_varied_recsize.ksh96 function check function
178 check $opts $small log_must
181 check $opts $small log_mustnot
186 check $opts $large log_must
189 check $opts $large log_mustnot
191 check -p $large log_must $small $large
192 check -L $large log_must $large $small
193 check -cp $large log_must $small $large
194 check -cL $large log_must $large $small
195 check -pL $large log_must $large $large
[all …]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dpci_io.c356 union bios32 *check; in pcibios_init() local
369 for (check = (union bios32 *) 0xe0000; check <= (union bios32 *) 0xffff0; ++check) { in pcibios_init()
370 if (check->fields.signature != BIOS32_SIGNATURE) in pcibios_init()
372 length = check->fields.length * 16; in pcibios_init()
377 sum += check->chars[i]; in pcibios_init()
380 if (check->fields.revision != 0) { in pcibios_init()
382 check->fields.revision, check); in pcibios_init()
387 "structure at %#X\n", check); in pcibios_init()
390 if (check->fields.entry >= 0x100000) { in pcibios_init()
395 bios32_entry = check->fields.entry; in pcibios_init()
/illumos-gate/usr/src/test/libc-tests/tests/fpround/
H A Dfpround_test.c39 char buffer[size], check[size]; in run_one() local
45 status = snprintf(check, size, "%+-.*f", DECIMAL_DIG, val); in run_one()
60 if (strlen(check) > strlen(buffer) && in run_one()
61 strncmp(buffer, check, strlen(buffer))) { in run_one()
63 if (check[strlen(buffer)] < '5' && in run_one()
64 buffer[strlen(buffer) - 1] > check[strlen(buffer) - 1]) { in run_one()
68 precision, j, i, buffer, check); in run_one()
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dstrncmp.S58 1: bz .iss2 ! if so go check s2
84 cmp %i3, 2 ! check if s2 half aligned
86 cmp %i3, 1 ! check if aligned to 1 or 3 bytes
119 ! triggers ... check every byte individually.
121 andcc %i4, %l0, %g0 ! check if first byte was zero
123 andcc %i4, %l1, %g0 ! check if second byte was zero
126 andcc %i4, %l2, %g0 ! check if third byte was zero
129 andcc %i4, 0xff, %g0 ! check if last byte is zero
166 andcc %i4, %l0, %g0 ! check if first byte was zero
168 andcc %i4, %l1, %g0 ! check if second byte was zero
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfpoll.c42 reg int *status, *check; local
49 check = status+n; /* streams that need polling */
92 check[c++] = r;
110 { f = fa[check[r]];
118 { f = fa[check[r]];
147 { f = fa[check[r]];
151 status[check[r]] |= SF_WRITE;
158 status[check[r]] |= SF_READ;
175 { f = fa[check[r]];
209 { f = fa[check[r]];
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dcgcc8 my $check = $ENV{'CHECK'} || 'sparse';
58 $check .= &add_specs ($1);
88 $check .= $this_arg;
98 $check .= &add_specs ('host_arch_specs');
99 $check .= &add_specs ('host_os_specs');
104 $check .= " -gcc-base-dir " . $gcc_base_dir if $gcc_base_dir;
108 $check .= " -multiarch-dir " . $multiarch_dir if $multiarch_dir;
110 print "$check\n" if $verbose;
112 system ($check);
114 exec ($check);
/illumos-gate/usr/src/head/
H A DMakefile333 iso/%.check: iso/%.h
336 arpa/%.check: arpa/%.h
339 audio/%.check: audio/%.h
342 rpcsvc/%.check: rpcsvc/%.h
345 rpcsvc/%.check: rpcsvc/%.x
348 protocols/%.check: protocols/%.h
351 kerberosv5/%.check: kerberosv5/%.h
354 uuid/%.check: uuid/%.h
365 CHECKHDRS= $(HDRS:%.h=%.check) \
366 $(KRB5HDRS:%.h=kerberosv5/%.check) \
[all …]
/illumos-gate/usr/src/test/os-tests/tests/xsave/
H A Dproc_writes.ksh99 typeset check=
108 check="$pw_datadir/proc_writes.$prog.$fpu_type.$arch"
110 if ! [[ -r $check ]]; then
111 warn "missing expected output file $check"
121 if ! diff -q $check $output; then
122 diff -u $check $output
H A Dmdb_xregs.ksh127 typeset check="$3"
134 check_file $check $output "extracted core matches"
147 typeset check=
157 check="$mx_data/mdb_xregs.$fpu_type.$isa"
160 check_file "$check" "$fpregs.lwp" "$isa-bit $fpu_type ::fpregs (lwp)"
161 check_file "$check" "$fpregs.lwp" "$isa-bit $fpu_type ::fpregs (thread)"
176 check_core "$f" "$mx_tmpdir/fpregs.core" $check
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dstrncmp.S58 1: bz,pn %icc, .iss2 ! if so go check s2
84 cmp %i3, 2 ! check if s2 half aligned
86 cmp %i3, 1 ! check if aligned to 1 or 3 bytes
119 ! triggers ... check every byte individually.
121 andcc %i4, %l0, %g0 ! check if first byte was zero
123 andcc %i4, %l1, %g0 ! check if second byte was zero
126 andcc %i4, %l2, %g0 ! check if third byte was zero
129 andcc %i4, 0xff, %g0 ! check if last byte is zero
166 andcc %i4, %l0, %g0 ! check if first byte was zero
168 andcc %i4, %l1, %g0 ! check if second byte was zero
[all …]
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dt-event.c28 static int check; variable
35 SM_TEST(check == 0);
36 check++;
77 check = 0;
84 SM_TEST(check == 1);
/illumos-gate/usr/src/boot/i386/libi386/
H A Dtime.c73 time_t now, check; in time() local
77 check = bios_seconds(); in time()
79 now = check; in time()
80 check = bios_seconds(); in time()
81 if (check != now) in time()
/illumos-gate/usr/src/man/
H A DMakefile.man27 MANCHECKS= $(MANFILES:%=%.check)
48 if $(EGREP) -q "^.TH" $(@:%.check=%); then \
49 $(MANDOC) -Tlint -Werror $(@:%.check=%); \
51 $(MANDOC) -Tlint -Wwarning $(@:%.check=%); \
62 check: $(MANCHECKS)
/illumos-gate/usr/src/test/util-tests/tests/libjedec/
H A Dlibjedec_spd.c63 nvlist_t *check; in spd_check_single_err() local
68 if ((ret = nvlist_lookup_nvlist(nvl, key, &check)) != 0) { in spd_check_single_err()
74 if ((ret = nvlist_lookup_string(check, SPD_KEY_ERRS_MSG, &msg)) != 0) { in spd_check_single_err()
76 dump_nvlist(check, 6); in spd_check_single_err()
80 if ((ret = nvlist_lookup_uint32(check, SPD_KEY_ERRS_CODE, in spd_check_single_err()
83 dump_nvlist(check, 6); in spd_check_single_err()
91 nvlist_free(check); in spd_check_single_err()

12345678910>>...33