| /third_party/libuv/ |
| D | ChangeLog | 7 * build: disable windows asan buildbot (Ben Noordhuis) 9 * test: don't run tcp_writealot under msan (Ben Noordhuis) 11 * build,win: remove extraneous -lshell32 (Ben Noordhuis) 19 * test: check if ipv6 link-local traffic is routable (Ben Noordhuis) 35 * test_fs.c: Fix issue on 32-bit systems using btrfs (Stephen Gallagher) 37 * misc: ignore libuv-release-tool files (Jameson Nash) 45 * test: skip tcp-write-in-a-row on IBM i (Abdirahim Musse) 61 * unix: support full TCP keep-alive on Solaris (Andy Pan) 67 * freebsd: fix build on non-intel archs (David Carlier) 75 * build: re-enable msvc-asan job on CI (Jameson Nash) [all …]
|
| /third_party/astc-encoder/jenkins/ |
| D | nightly.Jenkinsfile | 1 /* This pipeline is used for post-commit testing, so it runs frequently. 3 * Test objectives for this pipeline are: 5 * - Run the entire pipeline in less than 10 minutes. 6 * - Test builds on all supported operating systems. 7 * - Test builds on all supported compilers. 8 * - Test release and debug build variants. 9 * - Run functional smoke tests. 10 * - Run image quality smoke tests. 12 * The test matrix is not fully covered; e.g. we can assume compilers behave 13 * similarly on different operating systems, so we test one compiler per OS. [all …]
|
| D | release.Jenkinsfile | 3 * Test objectives for this pipeline are: 5 * - Run the entire pipeline in less than 60 minutes. 6 * - Test builds on all supported operating systems. 7 * - Test builds on optimized compiler choices (i.e. prefer Clang over GCC). 8 * - Build only release variants. 9 * - Run full functional tests. 10 * - Run full image quality tests. 11 * - Code sign the binaries on supported operating systems. 12 * - Build the release package. 14 * The test matrix is not fully covered; e.g. we can assume compilers behave [all …]
|
| /third_party/libwebsockets/win32port/ |
| D | libwebsockets.nsi | 6 OutFile "libwebsockets-${VERSION}-install.exe" 10 ;-------------------------------- 19 ;-------------------------------- 26 ;-------------------------------- 30 ;-------------------------------- 36 File "..\libwebsockets-api-doc.html" 41 File "..\README.test-apps.md" 42 File /nonfatal "..\build\bin\Release\libwebsockets-test-client.exe" 43 File /nonfatal "..\build\bin\Release\libwebsockets-test-echo.exe" 44 File /nonfatal "..\build\bin\Release\libwebsockets-test-fraggle.exe" [all …]
|
| /third_party/rust/crates/libloading/tests/ |
| D | markers.rs | 3 #[cfg(test)] 5 #[cfg(test)] 7 #[cfg(test)] 10 #[test] 15 #[test] 20 #[test] 25 #[test] 31 #[test] 36 #[cfg(windows)] 37 #[test] [all …]
|
| D | functions.rs | 1 #[cfg(windows)] 10 fn lib_path() -> std::path::PathBuf { in lib_path() 24 cmd.arg("src/test_helpers.rs").arg("-o").arg(lib_path()); in make_helpers() 26 cmd.arg("--target").arg(target); in make_helpers() 32 .expect("could not compile the test helpers!") in make_helpers() 37 #[test] 42 let f: Symbol<unsafe extern "C" fn(u32) -> u32> = lib.get(b"test_identity_u32\0").unwrap(); in test_id_u32() 56 #[test] 61 let f: Symbol<unsafe extern "C" fn(S) -> S> = lib.get(b"test_identity_struct\0").unwrap(); in test_id_struct() 79 #[test] [all …]
|
| /third_party/mesa3d/src/microsoft/ci/ |
| D | gitlab-ci.yml | 1 test-spirv2dxil-windows: 3 - .build-windows 4 - .use-windows_test_vs2019 5 - .spirv2dxil-test-rules 6 stage: layered-backends 8 - windows-vs2019 10 - windows-vs2019 11 - windows_test_vs2019 15 - . _install/spirv2dxil_run.ps1 20 - spirv2dxil_results.txt [all …]
|
| /third_party/skia/third_party/externals/freetype/builds/windows/ |
| D | detect.mk | 6 # Copyright (C) 1996-2021 by 21 # Detecting Windows NT is easy, as the OS variable must be defined and 22 # contains `Windows_NT'. This also works with Windows 2000 and XP. 26 PLATFORM := windows 30 # Detecting Windows 9X 33 # word `Windows'. If this is true, we are running Windows 95 or later: 38 # is_windows := $(findstring Windows,$(strip $(shell ver))) 42 # DOS 7.x (the MS-DOS version that lies below Windows) without actually 45 # A better test is to check whether there are both the environment 47 # underlying DOS 7.x, while the second is set only if windows is [all …]
|
| /third_party/pcre2/pcre2/ |
| D | NON-AUTOTOOLS-BUILD | 2 -------------------------------------- 8 Stack size in Windows environments 9 Linking programs in Windows environments 10 Calling conventions in Windows environments 12 Building PCRE2 on Windows with CMake 13 Building PCRE2 on Windows with Visual Studio 26 configure/make (autotools) build system, as found in many Unix-like 30 There is also support for CMake, which some users prefer, especially in Windows 31 environments, though it can also be run in Unix-like environments. See the 32 section entitled "Building PCRE2 on Windows with CMake" below. [all …]
|
| /third_party/pcre2/pcre2/doc/html/ |
| D | NON-AUTOTOOLS-BUILD.txt | 2 -------------------------------------- 8 Stack size in Windows environments 9 Linking programs in Windows environments 10 Calling conventions in Windows environments 12 Building PCRE2 on Windows with CMake 13 Building PCRE2 on Windows with Visual Studio 26 configure/make (autotools) build system, as found in many Unix-like 30 There is also support for CMake, which some users prefer, especially in Windows 31 environments, though it can also be run in Unix-like environments. See the 32 section entitled "Building PCRE2 on Windows with CMake" below. [all …]
|
| /third_party/rust/crates/is-terminal/src/ |
| D | lib.rs | 1 //! is-terminal is a simple utility that answers one question: 9 //! On Unix-family platforms, this is effectively the same as the [`isatty`] 11 //! accepts high-level stream types instead of raw file descriptors. 13 //! On Windows, it uses a variety of techniques to determine whether the 26 //! [`isatty`]: https://man7.org/linux/man-pages/man3/isatty.3.html 32 #[cfg(windows)] 34 #[cfg(windows)] 36 #[cfg(windows)] 51 fn is_terminal(&self) -> bool; in is_terminal() 57 fn is_terminal(&self) -> bool { in is_terminal() [all …]
|
| /third_party/rust/crates/cxx/.github/workflows/ |
| D | ci.yml | 16 test: 20 runs-on: ${{matrix.os || 'ubuntu'}}-latest 22 fail-fast: false 25 - rust: nightly 26 - rust: beta 27 - rust: stable 28 - rust: 1.60.0 29 - rust: 1.64.0 30 - name: Cargo on macOS 33 - name: Cargo on Windows (msvc) [all …]
|
| /third_party/rust/crates/atty/src/ |
| D | lib.rs | 22 #[cfg(windows)] 25 #[cfg(windows)] 27 #[cfg(windows)] 40 pub fn is(stream: Stream) -> bool { in is() 53 pub fn is(stream: Stream) -> bool { in is() 65 #[cfg(windows)] 66 pub fn is(stream: Stream) -> bool { in is() 86 // we're in a Windows console and can therefore trust the negative. in is() 97 pub fn isnt(stream: Stream) -> bool { in isnt() 102 #[cfg(windows)] [all …]
|
| /third_party/skia/third_party/externals/angle2/doc/ |
| D | dEQP.md | 3 drawElements (dEQP) is a very robust and comprehensive set of open-source 14 * `angle_deqp_gles2_no_gtest` for GLES 2.0 tests without google test suite 16 * `angle_deqp_gles3_no_gtest` for GLES 3.0 tests without google test suite 18 * `angle_deqp_egl_no_gtest` for EGL 1.x tests without google test suite 20 …le_deqp_gles31_no_gtest` for GLES 3.1 tests (currently very experimental) without google test suite 25 To run an individual test, use the `--deqp-case` flag on any of the `no_gtest` targets. 26 It supports simple wildcard support. For example: `--deqp-case=dEQP- 28 The `gtest` targets support wildcards via the `--gtest_filter` argument, 29 but have different test names. 32 `third_party/VK-GL-CTS/src/android/cts/master`. See `gles2-master.txt`, [all …]
|
| /third_party/rust/crates/io-lifetimes/.github/workflows/ |
| D | main.yml | 6 - main 12 runs-on: ubuntu-latest 14 - uses: actions/checkout@v3 17 - uses: ./.github/actions/install-rust 20 - run: cargo fmt --all -- --check 24 runs-on: ${{ matrix.os }} 29 - build: stable 30 os: ubuntu-latest 32 - build: nightly 33 os: ubuntu-latest [all …]
|
| /third_party/rust/crates/which-rs/tests/ |
| D | basic.rs | 25 fn mk_bin(dir: &Path, path: &str, extension: &str) -> io::Result<PathBuf> { in mk_bin() 36 fn touch(dir: &Path, path: &str, extension: &str) -> io::Result<PathBuf> { in touch() 41 #[cfg(windows)] 42 fn mk_bin(dir: &Path, path: &str, extension: &str) -> io::Result<PathBuf> { in mk_bin() 56 pub fn new() -> TestFixture { in new() 70 let p = tempdir.path().join("win-bin"); in new() 72 bins.push(mk_bin(&p, "win-bin", "exe").unwrap()); in new() 82 pub fn touch(&self, path: &str, extension: &str) -> io::Result<PathBuf> { in touch() 86 pub fn mk_bin(&self, path: &str, extension: &str) -> io::Result<PathBuf> { in mk_bin() 91 fn _which<T: AsRef<OsStr>>(f: &TestFixture, path: T) -> which::Result<which::CanonicalPath> { in _which() [all …]
|
| /third_party/rust/crates/serde/.github/workflows/ |
| D | ci.yml | 13 RUSTFLAGS: -Dwarnings 16 test: 17 name: Test suite 18 runs-on: ubuntu-latest 19 timeout-minutes: 45 21 - uses: actions/checkout@v4 22 - uses: dtolnay/rust-toolchain@nightly 23 - run: cd test_suite && cargo test --features unstable 25 windows: 26 name: Test suite (windows) [all …]
|
| /third_party/rust/crates/lazy-static.rs/ |
| D | appveyor.yml | 12 - TARGET: i686-pc-windows-gnu 14 - TARGET: i686-pc-windows-msvc 16 - TARGET: x86_64-pc-windows-gnu 18 - TARGET: x86_64-pc-windows-msvc 21 - TARGET: i686-pc-windows-gnu 23 - TARGET: i686-pc-windows-msvc 25 - TARGET: x86_64-pc-windows-gnu 27 - TARGET: x86_64-pc-windows-msvc 30 - TARGET: i686-pc-windows-gnu 32 - TARGET: i686-pc-windows-msvc [all …]
|
| /third_party/skia/third_party/externals/freetype/builds/dos/ |
| D | detect.mk | 6 # Copyright (C) 1996-2021 by 21 # Test for DJGPP by checking the DJGPP environment variable, which must be 25 # We test for the COMSPEC environment variable, then run the `ver' 26 # command-line program to see if its output contains the word `Dos' or 29 # If this is true, we are running a Dos-ish platform (or an emulation). 47 # We also try to recognize Dos 7.x without Windows 9X launched. 48 # See builds/windows/detect.mk for explanations about the logic. 53 # If windows is available, do not trigger this test. 55 is_dos := $(findstring Windows,$(strip $(shell ver))) 61 endif # test COMSPEC [all …]
|
| /third_party/skia/third_party/externals/angle2/infra/specs/ |
| D | angle.json | 4 "android-arm64-pixel4": { 9 "--use-angle=gles", 10 "-v", 11 "--shard-timeout=500" 36 "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com", 39 "test": "angle_deqp_egl_tests", string 46 "--use-angle=vulkan", 47 "-v", 48 "--shard-timeout=500" 73 "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com", [all …]
|
| /third_party/icu/icu4c/source/test/perf/ |
| D | README | 4 Copyright (C) 2008-2013, International Business Machines 7 README for ICU4C Performance Test 11 Posix, and/or Windows. Some tests only run on Windows and are labeled accordingly.All of the 12 performance tests are driven by a perl-based script which calls the underlying C program and 13 displays the statistical analysis of the test in an easy to read HTML web page. Each test will 22 http://source.icu-project.org/repos/icu/data/trunk/test/perf 26 Running Performance Test: 34 (The location of the performance test is: icu/source/test/perf) 39 b) Path to the performance test data 41 d) Whether or not you are running the test on Windows [all …]
|
| /third_party/rust/crates/libloading/.github/workflows/ |
| D | libloading.yml | 2 group: ${{ github.workflow }}-${{ github.ref }} 3 cancel-in-progress: true 8 paths-ignore: ['*.mkd', 'LICENSE'] 13 native-test: 14 runs-on: ${{ matrix.os }} 16 fail-fast: false 19 os: [ubuntu-latest, windows-latest, macOS-latest] 20 timeout-minutes: 20 22 - uses: actions/checkout@v2 23 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal [all …]
|
| /third_party/googletest/googletest/include/gtest/internal/ |
| D | gtest-filepath.h | 30 // Google Test filepath utilities 33 // Google Test. They are subject to change without notice. 35 // This file is #included in gtest/internal/gtest-internal.h. 47 #include "gtest/internal/gtest-port.h" 48 #include "gtest/internal/gtest-string.h" 51 /* class A needs to have dll-interface to be used by clients of class B */) 58 // FilePath - a class for file and directory pathname manipulation which 59 // handles platform-specific conventions (like the pathname separator). 62 // "immutable value object" -- useful for peace of mind. 66 // Names are NOT checked for syntax correctness -- no checking for illegal [all …]
|
| /third_party/icu/icu4c/source/test/letest/ |
| D | readme.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 5 "HTML Tidy for Windows (vers 26 April 2007), see www.w3.org"> 6 <meta http-equiv="Content-Type" content= 7 "text/html; charset=us-ascii"> 10 <!-- meta name="Copyright" content= 11 "Copyright (c) 2001-2007, International Business Machines Corporation and others. All Rights Reserv… 14 "Mozilla/4.72 [en] (Windows NT 5.0; U) [Netscape]"> 19 letest is a test program that you can use to verify the basic 21 API and reads an XML file that contains test cases to test some of 22 the features of the LayoutEngine. These test cases are not [all …]
|
| /third_party/libsnd/.github/workflows/ |
| D | action.yml | 8 fail-fast: false 11 ubuntu-gcc-autotools, 12 ubuntu-clang-autotools, 13 ubuntu-gcc-ossfuzz, 14 macos-autotools, 15 ubuntu-gcc-cmake, 16 ubuntu-gcc-cmake-shared, 17 ubuntu-clang-cmake, 18 ubuntu-clang-cmake-shared, 19 macos-cmake, [all …]
|