Home
last modified time | relevance | path

Searched refs:OUTPUT (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd-14.2/contrib/bmake/unit-tests/
H A Dvar-op-shell.mk7 OUTPUT!= echo "success"'ful'
8 .if ${OUTPUT} != "successful"
21 OUTPUT!= true
22 .if ${OUTPUT} != ""
33 .if ${OUTPUT} != "failed"
39 OUTPUT!= false
40 .if ${OUTPUT} != ""
62 OUTPUT!= kill $$$$
63 .if ${OUTPUT} != ""
70 .if ${OUTPUT} != ""
[all …]
H A Dvarname-makeflags.mk30 OUTPUT!= env MAKEFLAGS=ikrs ${MAKE} -f /dev/null -v .MAKEFLAGS
31 . if ${OUTPUT} != " -i -k -r -s -V .MAKEFLAGS"
39 OUTPUT!= env MAKEFLAGS=d0ikrs ${MAKE} -r -f /dev/null -v .MAKEFLAGS
40 . if ${OUTPUT} != " -r -V .MAKEFLAGS"
41 . error ${OUTPUT}
/freebsd-14.2/crypto/openssl/VMS/
H A Dmsg_staging.com20 $ WRITE SYS$OUTPUT ""
23 $ WRITE SYS$OUTPUT ""
24 $ WRITE SYS$OUTPUT "- from ", staging_instdir
25 $ WRITE SYS$OUTPUT " to ", final_instdir
26 $ WRITE SYS$OUTPUT "- from ", staging_datadir
27 $ WRITE SYS$OUTPUT " to ", final_datadir
28 $ WRITE SYS$OUTPUT ""
30 $ WRITE SYS$OUTPUT "to use OpenSSL:"
31 $ WRITE SYS$OUTPUT ""
34 $ WRITE SYS$OUTPUT ""
[all …]
H A Dmsg_install.com10 $ WRITE SYS$OUTPUT "Installation complete"
11 $ WRITE SYS$OUTPUT ""
12 $ WRITE SYS$OUTPUT "The following commands need to be executed to enable you to use OpenSSL:"
13 $ WRITE SYS$OUTPUT ""
14 $ WRITE SYS$OUTPUT "- to set up OpenSSL logical names:"
15 $ WRITE SYS$OUTPUT " @''systartup'openssl_startup''osslver'"
16 $ WRITE SYS$OUTPUT ""
17 $ WRITE SYS$OUTPUT "- to define the OpenSSL command"
18 $ WRITE SYS$OUTPUT " @''systartup'openssl_utils''osslver'"
19 $ WRITE SYS$OUTPUT ""
/freebsd-14.2/sys/tools/
H A Dacpi_quirks2h.awk33 OUTPUT="acpi_quirks.h"
42 printf("/*\n") > OUTPUT;
44 > OUTPUT;
45 printf(" *\n") > OUTPUT;
47 printf(" * %s\n", VERSION) > OUTPUT;
48 printf(" */\n\n") > OUTPUT;
97 TABLE, CREATOR) > OUTPUT;
150 > OUTPUT;
155 > OUTPUT;
159 printf("\t{ NULL, 0 }\n") > OUTPUT;
[all …]
/freebsd-14.2/contrib/libfido2/windows/
H A Drelease.ps124 "${OUTPUT}/pkg/${InstallPrefix}/${Config}/v${SDK}/${Type}"
29 Copy-Item "${OUTPUT}\x64\dynamic\include" -Destination "${OUTPUT}\pkg" ` in Package-Headers()
87 Package-Dynamic "${OUTPUT}\${Arch}\dynamic" `
88 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
90 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
92 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
93 Package-Static "${OUTPUT}\${Arch}\static" `
94 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
96 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
/freebsd-14.2/contrib/dialog/
H A Drun_test.sh39 OUTPUT=output.rc
49 DIALOGRC="$rcfile" $DIALOG --create-rc $OUTPUT
50 sed -e '/^#/d' "$OUTPUT" >"$INPUTS"
51 mv -f $INPUTS $OUTPUT
53 diff -u $INPUTS $OUTPUT | \
55 -e "s,$OUTPUT,$rcfile-test,"
58 rm -f $INPUTS $OUTPUT
/freebsd-14.2/sys/dev/cxgb/
H A Dbin2h.pl13 $success = open OUTPUT, ">$ARGV[1].h";
52 print OUTPUT "$license\n";
62 print OUTPUT "#define U (unsigned char)\n\n";
64 print OUTPUT "static unsigned int $ARGV[1]_length = $size;\n";
65 print OUTPUT "static unsigned char $ARGV[1]" . "[$size]" . " = {\n";
71 print OUTPUT $buf;
73 print OUTPUT "};\n";
/freebsd-14.2/contrib/bsddialog/
H A DMakefile6 OUTPUT= bsddialog macro
21 MAN= ${OUTPUT}.1
28 all : ${OUTPUT}
30 ${OUTPUT}: ${LIBBSDDIALOG} ${OBJECTS}
40 ${INSTALL} -s -m 555 ${OUTPUT} ${BINDIR}
45 ${RM} ${BINDIR}/${OUTPUT}
50 ${RM} ${OUTPUT} *.o *~ *.core ${MAN}.gz
H A DGNUMakefile6 OUTPUT= bsddialog
15 all : $(OUTPUT)
17 $(OUTPUT): $(LIBBSDDIALOG) $(OBJECTS)
28 $(RM) $(OUTPUT) *.o *~
/freebsd-14.2/contrib/ntp/scripts/
H A Dplot_summary.in113 open OUTPUT, ">$out_file" or die "$out_file: $!";
146 print OUTPUT "$line\n";
151 close OUTPUT or die "close failed on $out_file: $!";
166 open OUTPUT, "> $cmd_file" or die "$cmd_file: $!";
167 my $oldfh = select OUTPUT;
238 close OUTPUT or die "close failed on $cmd_file: $!";
255 open OUTPUT, ">$out_file" or die "$out_file: $!";
277 print OUTPUT join(' ', @Fld) . "\n";
282 close OUTPUT or die "close failed on $out_file: $!";
284 open OUTPUT, "> $cmd_file" or die "$cmd_file: $!";
[all …]
H A Dsummary.in127 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!";
128 print OUTPUT "$fname\n";
176 printf OUTPUT
186 close OUTPUT
197 print OUTPUT "$fname\n";
255 print OUTPUT
257 print OUTPUT
279 print OUTPUT sort @lines;
280 close OUTPUT;
289 print OUTPUT "$fname\n";
[all …]
/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgtest_skip_check_output_test.py43 OUTPUT = gtest_test_utils.Subprocess([EXE_PATH]).output variable
50 self.assertIn('Skipped\nskipping single test\n', OUTPUT)
53 re.search(skip_fixture + '.*' + skip_fixture, OUTPUT, flags=re.DOTALL),
54 repr(OUTPUT),
56 self.assertNotIn('FAILED', OUTPUT)
H A Dgtest_skip_environment_check_output_test.py43 OUTPUT = gtest_test_utils.Subprocess([EXE_PATH]).output variable
50 self.assertIn('Skipping the entire environment', OUTPUT)
51 self.assertNotIn('FAILED', OUTPUT)
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_program/
H A Dzfs_program_json.ksh100 OUTPUT=$(zfs program -j $TESTPOOL $TESTZCP $TESTDS $cmd 2>&1 |
102 if [ "$OUTPUT" != "${pos_cmds_out[$cnt]}" ]; then
103 log_note "Got :$OUTPUT"
127 OUTPUT=$(zfs program -j $cmd $TESTPOOL $TESTZCP $TESTDS 2>&1)
128 if [ "$OUTPUT" != "${neg_cmds_out[$cnt]}" ]; then
129 log_note "Got :$OUTPUT"
/freebsd-14.2/contrib/expat/tests/
H A Dxmltest.sh58 OUTPUT="$PWD/tests/out/"
87 $XMLWF -p -N -d "$OUTPUT$reldir" "$file" > outfile || return $?
91 $DIFF "$OUTPUT$reldir$file" "out/$file" > outfile
93 cp outfile "$OUTPUT$reldir$file.diff"
131 mkdir -p "$OUTPUT$xmldir"
141 mkdir -p "$OUTPUT"oasis
/freebsd-14.2/tests/sys/cddl/zfs/tests/xattr/
H A Dxattr_008_pos.ksh76 OUTPUT=$($RUNAT $TESTDIR/myfile.${TESTCASE_ID} $LS .)
77 if [ "$OUTPUT" != "passwd" ]
101 OUTPUT=$($RUNAT $TESTDIR/myfile.${TESTCASE_ID} $LS ..)
102 if [ "$OUTPUT" != ".." ]
/freebsd-14.2/cddl/usr.sbin/dwatch/
H A Ddwatch88 OUTPUT= # -o file
580 [ "$OUTPUT" ] &&
761 o) OUTPUT="$OPTARG" ;;
997 [ "$OUTPUT" -a ! "$CONSOLE_FORCE" ] && CONSOLE=
1005 if [ "$CUSTOM_TEST$EXECNAME$JID$OUTPUT$TIMEOUT$TRACE$VERBOSE" -a \
1012 [ "$OUTPUT" ] && msg="$msg output: $OUTPUT"
1075 case "$OUTPUT" in
1077 *) output_path="$OUTPUT"
1084 ${OUTPUT:+-o "$output_path"} \
1128 -v output="$OUTPUT" \
/freebsd-14.2/contrib/openbsm/config/
H A Dylwrap43 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
48 OUTPUT is one file PROG generates
49 DESIRED is the file we actually want instead of OUTPUT
53 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-14.2/contrib/ntp/sntp/libevent/build-aux/
H A Dylwrap75 Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
80 OUTPUT is one file PROG generates
81 DESIRED is the file we actually want instead of OUTPUT
85 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-14.2/tests/sys/cddl/zfs/tests/cli_user/misc/
H A Dzfs_unallow_001_neg.ksh69 OUTPUT=$($ZFS allow $TESTPOOL/$TESTFS/allowed | $GREP "Local+Descendent" )
70 if [ -z "$OUTPUT" ]
H A Dzfs_allow_001_neg.ksh73 OUTPUT=$(run_unprivileged "$ZFS allow $TESTPOOL/$TESTFS" | $GREP "Local+Descendent" )
74 if [ -n "$OUTPUT" ]
/freebsd-14.2/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-typemaps.swig27 %typemap(in, numinputs=0) TYPE *OUTPUT ($*ltype temp)
29 %typemap(argout) TYPE *OUTPUT
32 %typemap(argout) TYPE *INOUT = TYPE *OUTPUT;
33 %typemap(in) TYPE &OUTPUT = TYPE *OUTPUT;
34 %typemap(argout) TYPE &OUTPUT = TYPE *OUTPUT;
36 %typemap(argout) TYPE &INOUT = TYPE *OUTPUT;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFile.h37 SBError Read(uint8_t *buf, size_t num_bytes, size_t *OUTPUT);
38 SBError Write(const uint8_t *buf, size_t num_bytes, size_t *OUTPUT);
/freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_008_pos.ksh71 OUTPUT=$(runat $TESTDIR/myfile.$$ ls ..)
72 if [ "$OUTPUT" != ".." ]

1234