Home
last modified time | relevance | path

Searched +full:- +full:- +full:fail +full:- +full:env +full:- +full:changed (Results 1 – 25 of 253) sorted by relevance

1234567891011

/third_party/python/Tools/buildbot/
Dtest.bat7 set rt_opts=-q -d
8 set regrtest_args=-j1
12 if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
13 if "%1"=="-arm64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
14 if "%1"=="-arm32" (set rt_opts=%rt_opts% %1) & (set arm32_ssh=true) & shift & goto CheckOpts
15 if "%1"=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
16 if "%1"=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
17 if "%1"=="-q" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts
18 if "%1"=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts
19 if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts
[all …]
/third_party/python/
D.travis.yml4 # To cache doc-building dependencies and C compiler output.
6 - pip
7 - ccache
8 - directories:
9 - $HOME/multissl
11 env:
13 - OPENSSL=1.1.1f
14 - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
15 - PATH="${OPENSSL_DIR}/bin:$PATH"
16 - CFLAGS="-I${OPENSSL_DIR}/include"
[all …]
/third_party/python/.github/workflows/
Dcoverage.yml6 - master
7 - 3.8
8 - 3.7
9 paths-ignore:
10 - 'Doc/**'
11 - 'Misc/**'
14 # - master
15 # - 3.8
16 # - 3.7
17 # paths-ignore:
[all …]
/third_party/python/.azure-pipelines/
Dposix-steps.yml9 - checkout: self
14 - script: sudo setfacl -Rb /home/vsts
17 - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependen…
20 - script: ./configure --with-pydebug
23 - script: make -j4
26 - ${{ if eq(parameters.coverage, 'true') }}:
27 - script: ./python -m venv venv && ./venv/bin/python -m pip install -U coverage
30 - script: ./venv/bin/python -m test.pythoninfo
33 - script: |
34 $COMMAND -m coverage run --pylib -m test \
[all …]
/third_party/flutter/skia/third_party/externals/sdl/android-project/
Dbuild.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- This should be changed to the name of your project -->
5 <!-- The local.properties file is created and updated by the 'android' tool.
7 Version Control Systems. -->
10 <!-- The ant.properties file can be created by you. It is only edited by the
29 -->
32 <!-- if sdk.dir was not set from one of the property file, then
33 get it from the ANDROID_HOME env var.
35 the proguard config can use sdk.dir -->
36 <property environment="env" />
[all …]
/third_party/python/Lib/test/
Dtest_regrtest.py27 LOG_PREFIX = r'[0-9]+:[0-9]+:[0-9]+ (?:load avg: [0-9]+\.[0-9]{2} )?'
50 for opt in '-h', '--help':
58 ns = libregrtest._parse_args(['--timeout', '4.2'])
60 self.checkError(['--timeout'], 'expected one argument')
61 self.checkError(['--timeout', 'foo'], 'invalid float value')
64 ns = libregrtest._parse_args(['--wait'])
68 ns = libregrtest._parse_args(['--worker-args', '[[], {}]'])
70 self.checkError(['--worker-args'], 'expected one argument')
73 for opt in '-S', '--start':
80 ns = libregrtest._parse_args(['-v'])
[all …]
Dbisect_cmd.py1 #!/usr/bin/env python3
7 ./python -m test.bisect_cmd --fail-env-changed test_os
12 ./python -m test.bisect_cmd -o bisect -R 3:3 test_os
14 Load an existing list of tests from a file using -i option:
16 ./python -m test --list-cases -m FileTests test_os > tests
17 ./python -m test.bisect_cmd -i tests test_os
59 cmd.extend(['-m', 'test', '--list-cases'])
80 cmd.extend(['-m', 'test', '--matchfile', tmp])
92 parser.add_argument('-i', '--input',
93 help='Test names produced by --list-tests written '
[all …]
/third_party/openssl/test/recipes/
D70-test_sslrecords.t1 #! /usr/bin/env perl
2 # Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
23 if disabled("engine") || disabled("dynamic-engine");
31 $ENV{OPENSSL_ia32cap} = '~0x200000200000000';
32 my $proxy = TLSProxy::Proxy->new(
36 (!$ENV{HARNESS_ACTIVE} || $ENV{HARNESS_VERBOSE})
42 #Test 1: Injecting out of context empty records should fail
45 $proxy->serverflags("-tls1_2");
46 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests";
51 $proxy->clear();
[all …]
/third_party/python/Lib/test/libregrtest/
Dcmdline.py8 python -m test [options] [test_name1 [test_name2 ...]]
17 them in alphabetical order (but see -M and -u, below, for exceptions).
22 python -E -Wd -m test [options] [test_name1 ...]
28 -r randomizes test execution order. You can use --randseed=int to provide an
32 -s On the first invocation of regrtest using -s, the first test file found
41 consume too many resources to run the full regression test non-stop.
43 -S is used to continue running tests after an aborted run. It will
44 maintain the order a standard run (ie, this assumes -r is not used).
49 -f reads the names of tests from the file given as f's argument, one
54 -L causes the leaks(1) command to be run just before exit if it exists.
[all …]
Druntest.py22 ENV_CHANGED = -1
23 SKIPPED = -2
24 RESOURCE_DENIED = -3
25 INTERRUPTED = -4
26 CHILD_ERROR = -5 # error in a child process
27 TEST_DID_NOT_RUN = -6
28 TIMEOUT = -7
33 ENV_CHANGED: '%s failed (env changed)',
47 # (i.e. if any of these fail, then anything else is likely to follow)
65 # used by --findleaks, store for gc.garbage
[all …]
/third_party/ltp/testcases/kernel/io/disktest/
Dthreading.c18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * Please send e-mail to yardleyb@us.ibm.com if you have
28 * Clean Trailing Tab: Signed-off-by: Michal Simek <monstr@monstr.eu>.
31 * Clear Trailing Whitespace. Signed-off-by: Michal Simek <monstr@monstr.eu>.
43 * Fixed issue with code added for -F option. Cased disktest
47 * Added -F functions.
56 * No IO was performed when -S0:0 and -pr specified
68 * Rewrote -pL IO routine to show
70 * when using -C.
88 * Update getvsiz so it returns a -1
[all …]
/third_party/grpc/third_party/rake-compiler-dock/build/patches2/rake-compiler-1.1.0/
D0003-Allow-building-of-cross-rubies-in-parallel.patch2 From: Lars Kanis <lars@greiz-reinsdorf.de>
7 rake-compiler cross-ruby VERSION=2.7.0:2.6.0 HOST=x86_64-w64-mingw32:i686-w64-mingw32
10 To force sequential builds add option "-j1".
11 ---
12 tasks/bin/cross-ruby.rake | 161 +++++++++++++++++++-------------------
13 1 file changed, 80 insertions(+), 81 deletions(-)
15 diff --git a/tasks/bin/cross-ruby.rake b/tasks/bin/cross-ruby.rake
17 --- a/tasks/bin/cross-ruby.rake
18 +++ b/tasks/bin/cross-ruby.rake
19 @@ -41,106 +41,105 @@ end
[all …]
/third_party/ltp/testcases/kernel/syscalls/fork/
Dfork04.c21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
33 * OS Test - Silicon Graphics, Inc.
41 * CO-PILOT : Steve Shaw
56 * Terminates - with frequency and infinite modes.
63 * No run-time environmental needs.
76 * Check return code, if system call failed (return=-1)
89 * Determine and report PASS/FAIL result.
112 #define OUTPUT_FILE "env.out"
164 * Compare parent env string to child's string.
165 * Each string is in the format: <env var>:<value>
[all …]
/third_party/python/Tools/scripts/
Dpatchcheck.py1 #!/usr/bin/env python3
49 cmd = "git rev-parse --abbrev-ref HEAD".split()
63 cmd = "git remote get-url upstream".split()
92 @status("Getting the list of files that have been added/changed",
95 """Get the list of changed or added files from git."""
101 cmd = 'git diff --name-status ' + base_branch
103 cmd = 'git status --porcelain'
115 if ' -> ' in filename:
117 filename = filename.split(' -> ', 2)[1].strip()
191 """Report if any file in the Doc directory has been changed."""
[all …]
/third_party/node/src/
Dnode.cc26 #include "debug_utils-inl.h"
27 #include "env-inl.h"
28 #include "memory_tracker-inl.h"
29 #include "histogram-inl.h"
36 #include "node_options-inl.h"
38 #include "node_process-inl.h"
41 #include "node_v8_platform-inl.h"
45 #include "allocated_buffer-inl.h" // Inlined functions needed by node_crypto.h
65 #include "v8-profiler.h"
81 #include "v8-wasm-trap-handler-posix.h"
[all …]
/third_party/openssl/doc/man3/
DOPENSSL_malloc.pod22 - Memory allocation functions
70 env OPENSSL_MALLOC_FAILURES=... <application>
71 env OPENSSL_MALLOC_FD=... <application>
90 parameters and call a lower-level B<CRYPTO_xxx> API.
125 Colons between two-character hex "bytes" are ignored.
133 or returns -1 on error.
141 If any of B<m>, B<r>, or B<f> are NULL, then the function is not changed.
144 at build-time).
152 CRYPTO_mem_ctrl() provides fine-grained control of memory leak tracking.
170 there are no leaks, 0 if there are leaks and -1 if an error occurred.
[all …]
/third_party/python/Python/
Dpreconfig.c10 (((LEN) == -2) \
20 /* --- File system encoding/errors -------------------------------- */
26 are encoded to UTF-8. */
53 return -1; in _Py_SetFileSystemEncoding()
59 return -1; in _Py_SetFileSystemEncoding()
73 /* --- _PyArgv ---------------------------------------------------- */
80 if (args->use_bytes_argv) { in _PyArgv_AsWstrList()
81 size_t size = sizeof(wchar_t*) * args->argc; in _PyArgv_AsWstrList()
87 for (Py_ssize_t i = 0; i < args->argc; i++) { in _PyArgv_AsWstrList()
89 wchar_t *arg = Py_DecodeLocale(args->bytes_argv[i], &len); in _PyArgv_AsWstrList()
[all …]
/third_party/libuv/src/unix/
Dprocess.c63 # include "zos-base.h"
80 uv__wait_children(handle->loop); in uv__chld()
97 h = &loop->process_handles; in uv__wait_children()
104 if ((process->flags & UV_HANDLE_REAP) == 0) in uv__wait_children()
107 process->flags &= ~UV_HANDLE_REAP; in uv__wait_children()
113 pid = waitpid(process->pid, &status, options); in uv__wait_children()
114 while (pid == -1 && errno == EINTR); in uv__wait_children()
121 if (pid == -1) { in uv__wait_children()
129 assert(pid == process->pid); in uv__wait_children()
130 process->status = status; in uv__wait_children()
[all …]
/third_party/node/tools/
Dtest.py1 #!/usr/bin/env python
92 # ---------------------------------------------
93 # --- P r o g r e s s I n d i c a t o r s ---
94 # ---------------------------------------------
122 output += ["--- stderr ---" ]
125 output += ["--- stdout ---"]
129 output += ["--- %s ---" % PrintCrashed(failure.output.exit_code)]
131 output += ["--- TIMEOUT ---"]
152 # Spawn N-1 threads and then use this thread as the last one.
153 # That way -j1 avoids threading altogether which is a nice fallback
[all …]
/third_party/python/Lib/
Dplatform.py1 #!/usr/bin/env python3
3 """ This module tries to retrieve as much platform-identifying data as
11 # This module is maintained by Marc-Andre Lemburg <mal@egenix.com>.
16 # * support for MS-DOS (PythonDX ?)
20 # Many thanks to all those who helped adding platform-specific
35 # 1.0.8 - changed Windows support to read version from kernel32.dll
36 # 1.0.7 - added DEV_NULL
37 # 1.0.6 - added linux_distribution()
38 # 1.0.5 - fixed Java support to allow running the module on Jython
39 # 1.0.4 - added IronPython support
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dtest_shaders.py1 #!/usr/bin/env python3
3 # Copyright 2015-2021 Arm Limited
4 # SPDX-License-Identifier: Apache-2.0
10 # http://www.apache.org/licenses/LICENSE-2.0
53 m = re.search('([0-9]+) work registers', stats)
56 m = re.search('([0-9]+) uniform registers', stats)
59 m_list = re.findall('(-?[0-9]+)\s+(-?[0-9]+)\s+(-?[0-9]+)', stats)
72 return '--vertex'
74 return '--fragment'
76 return '--compute'
[all …]
/third_party/uboot/u-boot-2020.01/cmd/
Dnand.c7 * Ported 'dynenv' to 'nand env.oob' command
9 * 'dynenv' -- Dynamic environment offset in NAND OOB
10 * (C) Copyright 2006-2007 OpenMoko, Inc.
11 * Added 16-bit nand support
16 * are not considered a derived work of GPL v2-only code may be distributed
26 #include <env.h>
33 #include "legacy-mtd-utils.h"
125 return -1; in yaffs_tag_check()
131 return -1; in yaffs_tag_check()
134 if (memcmp(tags->magic, (unsigned char *)YAFFS2_SIGN_MAGIC, 8)) { in yaffs_tag_check()
[all …]
/third_party/flutter/skia/tools/
Dgit-sync-deps1 #!/usr/bin/env python
4 # Use of this source code is governed by a BSD-style license that can be
20 GIT_SYNC_DEPS_QUIET: if set to non-empty string, suppress messages.
25 git config sync-deps.disable true
27 To re-enable sync:
29 git config --unset sync-deps.disable
52 subprocess.call([git, '--version'], stdout=devnull)
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
104 return s if len(s) <= length else s[:(length - 3)] + '...'
[all …]
/third_party/FreeBSD/
DUPDATING9 https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
20 12.2-RELEASE.
22 20200915: p1 FreeBSD-SA-20:27.ure
23 FreeBSD-SA-20:28.bhyve_vmcs
24 FreeBSD-SA-20:29.bhyve_svm
25 FreeBSD-SA-20:30.ftpd
27 Fix ure device driver susceptible to packet-in-packet attack.
28 [SA-20:27.ure]
30 Fix bhyve privilege escalation via VMCS access. [SA-20:28.bhyve_vmcs]
32 Fix bhyve SVM guest escape. [SA-20:29.bhyve_svm]
[all …]
/third_party/typescript/src/tsserver/
DnodeServer.ts34 const len = args.length - 1;
41 case "-file":
44 case "-level":
48 case "-traceToConsole":
51 case "-logToFile":
63 pathStart.charCodeAt(pathStart.length - 1) !== CharacterCodes.doubleQuote) {
68 … if (pathStart.charCodeAt(pathStart.length - 1) === CharacterCodes.doubleQuote) break;
76 const mode = findArgument("--serverMode");
94 …execFileSync(file: string, args: string[], options: { stdio: "ignore", env: MapLike<string> }): st…
130 private fd = -1;
[all …]

1234567891011