/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/exact_match/subsystem/ |
D | TestDarwinLogFilterMatchSubsystem.py | 2 Test basic DarwinLog functionality provided by the StructuredDataDarwinLog 12 from lldbsuite.test import decorators 13 from lldbsuite.test import lldbtest 14 from lldbsuite.test import darwin_log 46 # subsystem filter tests 51 """Test that fall-through reject, accept match single subsystem works.""" 53 ["--no-match-accepts false", 54 "--filter \"accept subsystem match org.llvm.lldb.test.sub2\""] 58 # that subsystem. 69 """Test that fall-through reject, doesn't accept match subsystem via partial-match.""" [all …]
|
/external/llvm-project/lldb/test/API/functionalities/darwin_log/filter/regex/subsystem/ |
D | TestDarwinLogFilterRegexSubsystem.py | 2 Test basic DarwinLog functionality provided by the StructuredDataDarwinLog 12 from lldbsuite.test import decorators 13 from lldbsuite.test import lldbtest 14 from lldbsuite.test import darwin_log 51 """Test that a single fall-through reject regex rule rejects all logging.""" 53 ["--no-match-accepts false"] 63 # subsystem filter tests 68 """Test that fall-through reject, accept regex single subsystem works.""" 70 ["--no-match-accepts false", 71 "--filter \"accept subsystem regex org.llvm.lldb.test.sub2\""] [all …]
|
/external/llvm-project/lld/test/COFF/ |
D | failifmismatch.test | 3 RUN: lld-link /entry:main /subsystem:console /out:%t.exe \ 6 RUN: lld-link /entry:main /subsystem:console /out:%t.exe \ 9 RUN: lld-link /entry:main /subsystem:console /out:%t.exe \ 12 RUN: env LLD_IN_TEST=1 not lld-link /entry:main /subsystem:console /out:%t.exe \ 15 RUN: llc < %p/Inputs/failmismatch1.ll -mtriple x86_64-windows-msvc -filetype obj -o %t1.obj 16 RUN: llc < %p/Inputs/failmismatch2.ll -mtriple x86_64-windows-msvc -filetype obj -o %t2.obj 17 RUN: env LLD_IN_TEST=1 not lld-link %t1.obj %t2.obj 2>&1 | FileCheck %s -check-prefix OBJ 19 RUN: llvm-lib %t1.obj /out:%t.lib 20 RUN: env LLD_IN_TEST=1 not lld-link %t.lib %t2.obj 2>&1 | FileCheck %s -check-prefix LIB 22 CHECK: lld-link: error: /failifmismatch: mismatch detected for 'k1': [all …]
|
D | implib-name-mingw.test | 2 RUN: mkdir -p %t-out 3 RUN: llvm-mc -triple x86_64-windows-gnu -filetype obj -o %t-out/object.obj %S/Inputs/object.s 5 Check that linking without an explicit -implib doesn't produce any implib. 7 First test that linking without -lldmingw does produce an implib, but when 8 adding -lldmingw, it no longer is produced. And when it is explicitly named, 11 RUN: rm -f %t-out/library.lib 12 RUN: lld-link -dll -machine:x64 -def:%S/Inputs/named.def -out:%t-out/library.dll %t-out/object.obj … 13 RUN: test -f %t-out/library.lib 15 RUN: rm -f %t-out/library.lib 16 RUN: lld-link -lldmingw -dll -machine:x64 -def:%S/Inputs/named.def -out:%t-out/library.dll %t-out/o… [all …]
|
D | thinlto.ll | 2 ; RUN: rm -fr %T/thinlto 4 ; RUN: opt -thinlto-bc -o %T/thinlto/main.obj %s 5 ; RUN: opt -thinlto-bc -o %T/thinlto/foo.obj %S/Inputs/lto-dep.ll 6 ; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/ma… 7 ; RUN: llvm-nm %T/thinlto/main.exe.lto.1.obj | FileCheck %s 9 ; Test various possible options for /opt:lldltojobs 10 ; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/ma… 11 ; RUN: llvm-nm %T/thinlto/main.exe.lto.1.obj | FileCheck %s 12 ; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/ma… 13 ; RUN: llvm-nm %T/thinlto/main.exe.lto.1.obj | FileCheck %s [all …]
|
D | linkrepro.test | 3 # RUN: rm -rf %t.dir 4 # RUN: mkdir -p %t.dir/build1 %t.dir/build2 %t.dir/build3 %t.dir/build4 5 # RUN: yaml2obj %p/Inputs/hello32.yaml -o %t.obj 8 # RUN: lld-link %t.obj %p/Inputs/std32.lib /subsystem:console \ 13 # RUN: FileCheck %s --check-prefix=RSP < repro/response.txt 16 # RUN: lld-link %t.obj %p/Inputs/std32.lib /subsystem:console \ 21 # RUN: FileCheck %s --check-prefix=RSP < repro2/response.txt 24 # RUN: env LLD_REPRODUCE=repro.tar lld-link %t.obj %p/Inputs/std32.lib \ 25 # RUN: /subsystem:console /entry:main@0 /out:%t.exe 29 # RUN: FileCheck %s --check-prefix=RSP < repro/response.txt [all …]
|
D | wrap-lto-2.ll | 2 ; RUN: split-file %s %t.dir 4 ; RUN: llvm-as %t.dir/main.ll -o %t.main.bc 5 ; RUN: llvm-as %t.dir/wrap.ll -o %t.wrap.bc 6 ; RUN: llvm-as %t.dir/other.ll -o %t.other.bc 7 ; RUN: rm -f %t.bc.lib 8 ; RUN: llvm-ar rcs %t.bc.lib %t.wrap.bc %t.other.bc 10 ; RUN: opt -module-summary %t.dir/main.ll -o %t.main.thin 11 ; RUN: opt -module-summary %t.dir/wrap.ll -o %t.wrap.thin 12 ; RUN: opt -module-summary %t.dir/other.ll -o %t.other.thin 13 ; RUN: rm -f %t.thin.lib [all …]
|
/external/jemalloc_new/msvc/projects/vc2015/test_threads/ |
D | test_threads.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 4 <ProjectConfiguration Include="Debug-static|Win32"> 5 <Configuration>Debug-static</Configuration> 8 <ProjectConfiguration Include="Debug-static|x64"> 9 <Configuration>Debug-static</Configuration> 16 <ProjectConfiguration Include="Release-static|Win32"> 17 <Configuration>Release-static</Configuration> 20 <ProjectConfiguration Include="Release-static|x64"> 21 <Configuration>Release-static</Configuration> 38 <ProjectGuid>{09028CFD-4EB7-491D-869C-0708DB97ED44}</ProjectGuid> [all …]
|
/external/jemalloc_new/msvc/projects/vc2017/test_threads/ |
D | test_threads.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 4 <ProjectConfiguration Include="Debug-static|Win32"> 5 <Configuration>Debug-static</Configuration> 8 <ProjectConfiguration Include="Debug-static|x64"> 9 <Configuration>Debug-static</Configuration> 16 <ProjectConfiguration Include="Release-static|Win32"> 17 <Configuration>Release-static</Configuration> 20 <ProjectConfiguration Include="Release-static|x64"> 21 <Configuration>Release-static</Configuration> 38 <ProjectGuid>{09028CFD-4EB7-491D-869C-0708DB97ED44}</ProjectGuid> [all …]
|
/external/llvm-project/lldb/unittests/Utility/ |
D | SubsystemRAIITest.cpp | 1 //===-- SubsystemRAIITest.cpp ---------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 #include "gtest/gtest-spi.h" 19 /// Start state of the subsystem. 42 TEST(SubsystemRAIITest, NormalSubsystem) { in TEST() function 46 SubsystemRAII<TestSubsystem> subsystem; in TEST() local 70 /// Reset the subsystem to the default state for testing. 78 TEST(SubsystemRAIITest, SubsystemWithErrorSuccess) { in TEST() function 85 SubsystemRAII<TestSubsystemWithError> subsystem; in TEST() local [all …]
|
/external/ltp/testcases/kernel/uevents/ |
D | uevent02.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 7 * Very simple uevent netlink socket test. 33 .ifr_name = "ltp-tun0", in generate_tun_uevents() 48 .msg = "add@/devices/virtual/net/ltp-tun0", in verify_uevent() 52 "DEVPATH=/devices/virtual/net/ltp-tun0", in verify_uevent() 53 "SUBSYSTEM=net", in verify_uevent() 54 "INTERFACE=ltp-tun0", in verify_uevent() 59 .msg = "add@/devices/virtual/net/ltp-tun0/queues/rx-0", in verify_uevent() 63 "DEVPATH=/devices/virtual/net/ltp-tun0/queues/rx-0", in verify_uevent() 64 "SUBSYSTEM=queues", in verify_uevent() [all …]
|
D | uevent03.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 7 * Very simple uevent netlink socket test. 79 "SUBSYSTEM=input", in verify_uevent() 80 "NAME=\"virtual-device-ltp\"", in verify_uevent() 92 "SUBSYSTEM=input", in verify_uevent() 105 "SUBSYSTEM=input", in verify_uevent() 118 "SUBSYSTEM=input", in verify_uevent() 131 "SUBSYSTEM=input", in verify_uevent() 145 "SUBSYSTEM=input", in verify_uevent() 146 "NAME=\"virtual-device-ltp\"", in verify_uevent() [all …]
|
/external/ltp/testcases/kernel/controllers/cgroup_fj/ |
D | cgroup_fj_common.sh | 8 ## Copyright (c) 2015-2016 Cyril Hrubis <chrubis@suse.cz> ## 22 ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## 30 . test.sh 34 local subsystem="$1" 35 local exist=`grep -w $subsystem /proc/cgroups | cut -f1` 37 if [ -z "$exist" ]; then 38 tst_brkm TCONF "Subsystem $subsystem not supported" 54 if [ "$task" -ne "$pid" ]; then 71 if [ "$subsystem" = "cpuset" ]; then 72 if [ -e "$mount_point/cpus" ]; then [all …]
|
/external/libpng/projects/visualc71/ |
D | pngtest.vcproj | 1 <?xml version="1.0" encoding="Windows-1252"?> 14 OutputDirectory=".\Win32_DLL_Release\Test" 15 IntermediateDirectory=".\Win32_DLL_Release\Test" 37 SubSystem="1"/> 61 OutputDirectory=".\Win32_DLL_Debug\Test" 62 IntermediateDirectory=".\Win32_DLL_Debug\Test" 84 SubSystem="1" 109 OutputDirectory=".\Win32_DLL_VB\Test" 110 IntermediateDirectory=".\Win32_DLL_VB\Test" 134 SubSystem="1" [all …]
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | plan.md | 1 # Parameter Framework (PF) test plan 4 - The unit test code MAY be able to list implemented scenarios 6 - All scenarios implicitly start by _"GIVEN a parameter framework"_. 7 - If a scenario does not specify a config files, 12 <?xml version='1.0' encoding='UTF-8'?> 13 <ParameterFrameworkConfiguration SystemClassName='test' 22 <?xml version='1.0' encoding='UTF-8'?> 23 <SystemClass Name='test'> 24 <Subsystem Name='test' Type='Virtual'> 29 </Subsystem> [all …]
|
/external/llvm-project/lldb/test/API/functionalities/darwin_log/format/ |
D | TestDarwinLogMessageFormat.py | 2 Test DarwinLog log message formatting options provided by the 13 from lldbsuite.test import decorators 14 from lldbsuite.test import lldbtest 15 from lldbsuite.test import darwin_log 47 # Test settings around log message formatting 53 re.compile(r"This is the log message."), # Match no-header content. 59 """Test that turning off log message headers works as advertised.""" 71 """Test that displaying any header works.""" 73 ["--timestamp-relative", "--subsystem", "--category", 74 "--activity-chain"], [all …]
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
D | Config.hpp | 50 (this->*member) = std::forward<T>(value); in Config() 53 /** Mapping attribute of the test subsystem. */ 56 /** Instances of the test subsystem. 59 * SystemClass/Subsystem[name=test]/InstanceDefinition xml node. 78 /** Subsystem type. Virtual by default. */
|
/external/libpng/projects/vstudio/pngtest/ |
D | pngtest.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 22 <ProjectGuid>{228BA965-50D5-42B2-8BCF-AFCC227E3C1D}</ProjectGuid> 97 <SubSystem>Console</SubSystem> 103 <Message>Executing PNG test program</Message> 130 <SubSystem>Console</SubSystem> 136 <Message>Executing PNG test program</Message> 162 <SubSystem>Console</SubSystem> 171 <Message>Executing PNG test program</Message> 198 <SubSystem>Console</SubSystem> 207 <Message>Executing PNG test program</Message>
|
/external/parameter-framework/upstream/ |
D | .travis.yml | 2 - linux 3 - osx 8 # https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions 15 - PREFIX=$HOME/prefix 16 - MY_CMAKE_OPTIONS="-DCMAKE_PREFIX_PATH=$PREFIX -DCMAKE_INSTALL_PREFIX=$HOME/install" 17 - OSX_CMAKE_OPTIONS="-DBUILD_TESTING=OFF -DPYTHON_BINDINGS=OFF -DCLIENT_SIMULATOR=OFF" 18 - CTEST_OUTPUT_ON_FAILURE=1 19 - LINUX=false 20 - OSX=false 23 - gcc [all …]
|
/external/parameter-framework/upstream/test/xml-generator/PFConfig/ |
D | structure.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <SystemClass Name="Test" xmlns:xi="http://www.w3.org/2001/XInclude"> 3 <Subsystem Name="test" Type="Virtual"> 5 <!-- Test xi:include feature. 7 not in the xml generation test. --> 24 </Subsystem>
|
/external/parameter-framework/upstream/skeleton-subsystem/ |
D | CMakeLists.txt | 34 project(parameter-framework-plugins-skeleton) 48 set_property(DIRECTORY PROPERTY COMPILE_OPTIONS -Werror -Wall -Wextra -Wconversion) 55 # Force libs and executable to all be at a known place - simplifies a lot of 56 # things, especially setting the test environment 60 add_library(skeleton-subsystem MODULE 65 target_link_libraries(skeleton-subsystem PRIVATE ParameterFramework::plugin) 67 install(TARGETS skeleton-subsystem 72 add_subdirectory(test)
|
/external/autotest/server/site_tests/firmware_FAFTRPC/ |
D | firmware_FAFTRPC.py | 2 # Use of this source code is governed by a BSD-style license that can be 22 "UUID": "93EF7B23-606B-014B-A10C-E9D7CF53DFD3", 30 "UUID": "C6604D6B-5563-EE4E-9915-0C50530B158A", 38 # RPC_CATEGORIES contains the test cases for all RPCs. 53 Extract the method_name or method_names from a test case configuration. 58 @return: A list of names of RPC methods in that test case. 77 This test checks that all RPC commands work as intended. 83 It would be good to expand this test to verify that all RPCs 92 """Runs before test begins.""" 99 """Runs after test completion.""" [all …]
|
D | control.all | 2 # Use of this source code is governed by a BSD-style license that can be 10 CRITERIA = "This test will fail if the FAFT RPC system is not set up correctly." 18 This test checks that all RPC functions on all subsystems are connected, 22 Instead, each subsystem has its own control file. 23 That way, issues occurring in a particular subsystem will be easy to spot.
|
/external/parameter-framework/upstream/test/ |
D | CMakeLists.txt | 1 # Copyright (c) 2014-2015, Intel Corporation 31 add_subdirectory(functional-tests) 32 add_subdirectory(functional-tests-legacy) 33 add_subdirectory(test-fixed-point-parameter) 34 add_subdirectory(test-platform) 35 add_subdirectory(test-subsystem) 36 add_subdirectory(introspection-subsystem) 38 add_subdirectory(xml-generator)
|
/external/icu/icu4c/source/test/perf/ubrkperf/ |
D | ubrkperf20.dsp | 1 # Microsoft Developer Studio Project File - Name="ubrkperf20" - Package Owner=<4> 7 CFG=ubrkperf20 - Win32 Debug 16 !MESSAGE NMAKE /f "ubrkperf20.mak" CFG="ubrkperf20 - Win32 Debug" 20 !MESSAGE "ubrkperf20 - Win32 Release" (based on "Win32 (x86) Console Application") 21 !MESSAGE "ubrkperf20 - Win32 Debug" (based on "Win32 (x86) Console Application") 22 !MESSAGE "ubrkperf20 - Win64 Release" (based on "Win32 (x86) Console Application") 23 !MESSAGE "ubrkperf20 - Win64 Debug" (based on "Win32 (x86) Console Application") 33 !IF "$(CFG)" == "ubrkperf20 - Win32 Release" 48 … /MD /W3 /GX /O2 /Ob2 /I "c:\src\oldICU\icu-2-0\include" /I "..\..\..\tools\toolutil" /I "c:\src\o… 56 …32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine… [all …]
|