| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | t_authdata.c | 80 krb5_authdata **results; in main() local 86 assert(krb5_merge_authdata(context, adseq1, adseq2, &results) == 0); in main() 87 compare_authdata(results[0], &ad1); in main() 88 compare_authdata( results[1], &ad2); in main() 89 compare_authdata(results[2], &ad4); in main() 90 compare_authdata( results[3], &ad3); in main() 91 assert(results[4] == NULL); in main() 92 krb5_free_authdata(context, results); in main() 97 &results) == 0); in main() 98 compare_authdata(&ad1, results[0]); in main() [all …]
|
| /freebsd/contrib/kyua/doc/ |
| H A D | results-files-report-example.mdoc | 1 .Ss Workflow with results files 9 ~/.kyua/store/results.usr_tests.20140731-150500-196784.db 10 ~/.kyua/store/results.usr_tests.20140731-151730-997451.db 14 generate a report for the results of the 19 cd /usr/tests && kyua __REPORT_COMMAND__ --results-file=LATEST 20 kyua __REPORT_COMMAND__ --results-file=/usr/tests 21 kyua __REPORT_COMMAND__ --results-file=usr_tests 22 kyua __REPORT_COMMAND__ --results-file=usr_tests.20140731-151730-997451 29 --results-file=usr_tests.20140731-150500-196784 31 --results-file=~/.kyua/store/results.usr_tests.20140731-150500-196784.db
|
| /freebsd/contrib/googletest/googletest/test/ |
| H A D | googletest-test-part-test.cc | 184 TestPartResultArray results; in TEST_F() local 185 EXPECT_EQ(0, results.size()); in TEST_F() 191 TestPartResultArray results; in TEST_F() local 192 results.Append(r1_); in TEST_F() 193 EXPECT_EQ(1, results.size()); in TEST_F() 194 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); in TEST_F() 200 TestPartResultArray results; in TEST_F() local 201 results.Append(r1_); in TEST_F() 202 results.Append(r2_); in TEST_F() 203 EXPECT_EQ(2, results.size()); in TEST_F() [all …]
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | DwarfParser.hpp | 165 int arch, PrologInfo *results); 422 int arch, PrologInfo *results) { in parseFDEInstructions() argument 501 results->setRegister(reg, kRegisterInCFA, offset, initialState); in parseFDEInstructions() 513 results->restoreRegisterToInitialState(reg, initialState); in parseFDEInstructions() 524 results->setRegisterLocation(reg, kRegisterUnused, initialState); in parseFDEInstructions() 538 results->setRegisterLocation(reg, kRegisterUnused, initialState); in parseFDEInstructions() 554 results->setRegister(reg, kRegisterInRegister, (int64_t)reg2, in parseFDEInstructions() 567 entry->info = *results; in parseFDEInstructions() 578 *results = top->info; in parseFDEInstructions() 593 results->cfaRegister = (uint32_t)reg; in parseFDEInstructions() [all …]
|
| /freebsd/contrib/ntp/sntp/unity/auto/ |
| H A D | unity_test_summary.rb | 30 results = @targets.map {|target| target.gsub(/\\/,'/')} 36 results.each do |result_file| 97 results = { :failures => [], :ignores => [], :successes => [] } 102 when 'IGNORE' then results[:ignores] << line_out 103 when 'FAIL' then results[:failures] << line_out 104 when 'PASS' then results[:successes] << line_out 107 return results 135 results = Dir[targets] 136 … raise "No *.testpass, *.testfail, or *.testresults files found in '#{targets}'" if results.empty? 137 uts.set_targets(results)
|
| H A D | unity_test_summary.py | 22 results = [] 24 results.append(target.replace('\\', '/')) 30 for result_file in results: 86 results = { 'failures': [], 'ignores': [], 'successes': [] } 97 results['ignores'].append(line_out) 99 results['failures'].append(line_out) 101 results['successes'].append(line_out) 102 return results
|
| /freebsd/contrib/kyua/engine/ |
| H A D | scanner_test.cpp | 144 std::set< engine::scan_result > results; in yield_all() local 148 results.insert(result.get()); in yield_all() 152 return results; in yield_all() 187 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local 188 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY() 216 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local 217 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY() 239 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local 240 ATF_REQUIRE_EQ(exp_results, results); in ATF_TEST_CASE_BODY() 271 const std::set< engine::scan_result > results = yield_all(scanner); in ATF_TEST_CASE_BODY() local [all …]
|
| /freebsd/contrib/kyua/drivers/ |
| H A D | scan_results_test.cpp | 201 std::set< std::string > results; in ATF_TEST_CASE_BODY() local 202 results.insert("/root/dir/prog_0:case_0:skipped:Count 0:4:10"); in ATF_TEST_CASE_BODY() 203 results.insert("/root/dir/prog_0:case_1:skipped:Count 1:4:11"); in ATF_TEST_CASE_BODY() 204 results.insert("/root/dir/prog_1:case_0:skipped:Count 0:4:11"); in ATF_TEST_CASE_BODY() 205 results.insert("/root/dir/prog_1:case_1:skipped:Count 1:4:12"); in ATF_TEST_CASE_BODY() 206 ATF_REQUIRE_EQ(results, hooks._results); in ATF_TEST_CASE_BODY() 232 std::set< std::string > results; in ATF_TEST_CASE_BODY() local 233 results.insert("/root/dir/prog_1:case_0:skipped:Count 0:4:11"); in ATF_TEST_CASE_BODY() 234 results.insert("/root/dir/prog_1:case_1:skipped:Count 1:4:12"); in ATF_TEST_CASE_BODY() 235 results.insert("/root/dir/prog_1:case_2:skipped:Count 2:4:13"); in ATF_TEST_CASE_BODY() [all …]
|
| /freebsd/sys/rpc/rpcsec_gss/ |
| H A D | rpcsec_gss_prot.c | 227 struct mbuf *results, *message, *mic; in xdr_rpc_gss_unwrap_data() local 232 results = *resultsp; in xdr_rpc_gss_unwrap_data() 243 len = get_uint32(&results); in xdr_rpc_gss_unwrap_data() 244 message = results; in xdr_rpc_gss_unwrap_data() 245 results = m_split(results, len, M_WAITOK); in xdr_rpc_gss_unwrap_data() 246 if (!results) { in xdr_rpc_gss_unwrap_data() 254 cklen = get_uint32(&results); in xdr_rpc_gss_unwrap_data() 255 if (!results) { in xdr_rpc_gss_unwrap_data() 260 mic = results; in xdr_rpc_gss_unwrap_data() 284 len = get_uint32(&results); in xdr_rpc_gss_unwrap_data() [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/l2arc/ |
| H A D | l2arc_dwpd_ratelimit_pos.ksh | 84 typeset -A results 124 results[$dwpd]=$((end - baseline)) 129 if [[ ${results[0]} -le ${results[10000]} ]]; then 132 if [[ ${results[10000]} -le ${results[5000]} ]]; then 135 if [[ ${results[5000]} -le ${results[1800]} ]]; then
|
| /freebsd/contrib/kyua/cli/ |
| H A D | cmd_test.cpp | 146 const layout::results_id_file_pair results = layout::new_db( in run() local 154 kyuafile_path(cmdline), build_root_path(cmdline), results.second, in run() 173 if (!results.first.empty()) { in run() 174 ui->out(F("Results file id is %s") % results.first); in run() 176 ui->out(F("Results saved to %s") % results.second); in run() 195 if (!results.first.empty()) { in run() 196 ui->out(F("Results file id is %s") % results.first); in run() 198 ui->out(F("Results saved to %s") % results.second); in run()
|
| /freebsd/sys/contrib/openzfs/tests/test-runner/bin/ |
| H A D | zts-report.py.in | 426 results, logdir = process_results(args.logfile) variable 428 if not results: 437 for test in list(results.keys()): 438 if results[test] == "PASS": 442 if results[test] == "SKIP" and test != setup: 448 if (test in known and results[test] in known[test][0]): 450 elif test in maybe and results[test] in maybe[test][0]: 451 if results[test] == 'SKIP' or args.maybes: 491 if test not in results or results[test] != "PASS":
|
| /freebsd/contrib/bc/src/ |
| H A D | program.c | 215 bc_vec_push(&p->results, &res); in bc_program_pushBigdig() 451 *r = bc_vec_item_rev(&p->results, idx); in bc_program_operand() 486 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 2))) in bc_program_binPrep() 493 assert(BC_PROG_STACK(&p->results, idx + 2)); in bc_program_binPrep() 601 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_prep() 608 assert(BC_PROG_STACK(&p->results, idx + 1)); in bc_program_prep() 624 BcResult* res = bc_vec_pushEmpty(&p->results); in bc_program_prepResult() 818 ip.len = p->results.len; in bc_program_read() 863 BcResult* r = bc_vec_top(&p->results); in bc_program_rand() 974 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_print() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | Analyses.def | 28 ANALYSIS_DIAGNOSTICS(HTML, "html", "Output analysis results using HTML", 33 "Output analysis results using HTML (not allowing for multi-file bugs)", 36 ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists", 41 "Output analysis results using Plists (allowing for multi-file bugs)", 45 "Output analysis results using HTML wrapped with Plists", 48 ANALYSIS_DIAGNOSTICS(SARIF, "sarif", "Output analysis results using SARIF", 52 "Output analysis results using both SARIF and HTML " 56 ANALYSIS_DIAGNOSTICS(TEXT, "text", "Text output of analysis results to stderr",
|
| /freebsd/contrib/netbsd-tests/bin/sh/ |
| H A D | t_varval.sh | 120 rm -f results || : 122 atf_check -s exit:0 -o save:results -e empty ${TEST_SH} 123 test -z $( grep -v "^13$" results ) || 137 rm -f results || : 139 atf_check -s exit:0 -o save:results -e empty ${TEST_SH} 142 test $( wc -l < results ) -eq 256 || 144 test $(wc -c < results) -eq $(( 255 * 14 )) ||
|
| /freebsd/contrib/bc/tests/ |
| H A D | script.sh | 159 results="$scriptdir/$name.txt" 163 elif [ -f "$results" ]; then 164 res="$results" 188 printf '%s\n' "$halt" 2> /dev/null | "$d" "$s" > "$results" 193 printf '%s\n' "$halt" 2> /dev/null | "$d" "$s" | sed -n -f "$testdir/script.sed" > "$results" 196 res="$results"
|
| H A D | test.sh | 68 results="$testdir/$d/${t}_results.txt" 130 if [ ! -f "$results" ]; then 132 printf '%s\n' "$halt" 2> /dev/null | "$d" $options "$name" > "$results" 152 checktest "$d" "$err" "$t" "$results" "$out"
|
| /freebsd/sys/contrib/openzfs/contrib/zcp/ |
| H A D | autosnap.lua | 5 results = {} 57 results[ds_snap_name] = err 66 for ds, err in pairs(results) do 75 return results
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_program/ |
| H A D | zfs_program_json.ksh | 70 results = {} 71 results["succeeded"] = succeeded 72 results["failed"] = failed 73 return results
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | depsrc-meta.mk | 20 check-results: 27 @${MAKE} -r -f ${MAKEFILE} check-results 30 @${MAKE} -r -f ${MAKEFILE} check-results -j1
|
| /freebsd/contrib/unbound/compat/ |
| H A D | getentropy_osx.c | 207 uint8_t results[SHA512_DIGEST_LENGTH]; in getentropy_fallback() local 397 HD(results); in getentropy_fallback() 409 SHA512_Final(results, &ctx); in getentropy_fallback() 410 memcpy((char *)buf + i, results, min(sizeof(results), len - i)); in getentropy_fallback() 411 i += min(sizeof(results), len - i); in getentropy_fallback() 414 explicit_bzero(results, sizeof results); in getentropy_fallback()
|
| H A D | getentropy_solaris.c | 255 uint8_t results[SHA512_DIGEST_LENGTH]; in getentropy_fallback() local 419 HD(results); in getentropy_fallback() 430 SHA512_Final(results, &ctx); in getentropy_fallback() 431 memcpy((char *)buf + i, results, min(sizeof(results), len - i)); in getentropy_fallback() 432 i += min(sizeof(results), len - i); in getentropy_fallback() 434 memset(results, 0, sizeof results); in getentropy_fallback()
|
| /freebsd/tools/tools/commitsdb/ |
| H A D | query_commit_db | 46 my @results; 54 push @results, "$name $rev"; 62 foreach my $r (sort @results) {
|
| /freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/ |
| H A D | dtest.pl | 50 %results = (); 523 $results{$dtrace} = { 691 foreach $key (keys %results) { 692 my $passed = $results{$key}{"passed"}; 693 my $bypassed = $results{$key}{"bypassed"}; 694 my $failed = $results{$key}{"failed"}; 695 my $total = $results{$key}{"total"};
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 268 auto results = m_global_scope_up->findAllChildren<PDBSymbolCompiland>(); in ParseCompileUnitAtIndex() local 269 if (!results) in ParseCompileUnitAtIndex() 271 auto compiland_up = results->getChildAtIndex(index); in ParseCompileUnitAtIndex() 456 std::unique_ptr<IPDBEnumSymbols> results; in ParseTypes() local 460 results = raw_sym.findAllChildren(tag); in ParseTypes() 461 if (!results || results->getChildCount() == 0) in ParseTypes() 463 while (auto symbol = results->getNext()) { in ParseTypes() 522 auto results = m_global_scope_up->findAllChildren<PDBSymbolData>(); in ParseVariablesForContext() local 523 if (results && results->getChildCount()) { in ParseVariablesForContext() 524 while (auto result = results->getNext()) { in ParseVariablesForContext() [all …]
|