| /external/linux-kselftest/android/ |
| D | vts_linux_kselftest_x86_32.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 33 <test class="com.android.tradefed.testtype.binary.KernelTargetTest" > 34 <option name="exit-code-skip" value="4" /> [all …]
|
| D | vts_linux_kselftest_x86_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 33 <test class="com.android.tradefed.testtype.binary.KernelTargetTest" > 34 <option name="exit-code-skip" value="4" /> [all …]
|
| D | vts_linux_kselftest_arm_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 33 <test class="com.android.tradefed.testtype.binary.KernelTargetTest" > 34 <option name="exit-code-skip" value="4" /> [all …]
|
| D | vts_linux_kselftest_arm_32.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 33 <test class="com.android.tradefed.testtype.binary.KernelTargetTest" > 34 <option name="exit-code-skip" value="4" /> [all …]
|
| D | vts_linux_kselftest_riscv_64.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2020 The Android Open Source Project 6 http://www.apache.org/licenses/LICENSE-2.0 12 --> 17 <option name="test-suite-tag" value="vts" /> 18 <option name="config-descriptor:metadata" key="component" value="kselftests" /> 29 <option name="push-file" key="{MODULE}" value="&ktest_dir;" /> 30 …-push" value='chmod -R 755 &ktest_dir;; find &ktest_dir; -type f | xargs grep -l -e "bin/sh" -e "b… 33 <test class="com.android.tradefed.testtype.binary.KernelTargetTest" > 34 <option name="exit-code-skip" value="4" /> [all …]
|
| /external/cpuinfo/ |
| D | CMakeLists.txt | 3 # ---[ Setup project 9 # ---[ Options. 21 OPTION(CPUINFO_BUILD_TOOLS "Build command-line tools" ON) 24 OPTION(CPUINFO_BUILD_BENCHMARKS "Build cpuinfo micro-benchmarks" ON) 25 OPTION(CPUINFO_BUILD_PKG_CONFIG "Build pkg-config manifest" ON) 28 OPTION(USE_SYSTEM_GOOGLETEST "Use system Google Test library instead of downloading and building it… 30 # ---[ CMake options 61 # -- [ Determine whether building for Apple's desktop or mobile OSes 68 # -- [ Determine target processor 89 # ---[ Build flags [all …]
|
| /external/linux-kselftest/tools/testing/selftests/tc-testing/creating-testcases/ |
| D | AddingTestCases.txt | 1 tdc - Adding test cases for tdc 3 Author: Lucas Bates - lucasb@mojatatu.com 5 ADDING TEST CASES 6 ----------------- 8 User-defined tests should be added by defining a separate JSON file. This 10 template.json for the required JSON format for test cases. 12 Include the 'id' field, but do not assign a value. Running tdc with the -i 13 option will generate a unique ID for that test case. 15 tdc will recursively search the 'tc-tests' subdirectory (or the 16 directories named with the -D option) for .json files. Any test case [all …]
|
| /external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/stub/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.stub.command; 21 import org.mockftpserver.core.command.Command; 23 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 28 * @version $Revision$ - $Date$ 37 * Test the Command(String,String[]) constructor 41 Command command = new Command("abc", PARAMETERS); in testConstructor() local 42 assertEquals("name", "abc", command.getName()); in testConstructor() 43 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() [all …]
|
| /external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 22 import org.mockftpserver.test.AbstractTestCase; 27 * Tests for the Command class 30 * @version $Revision$ - $Date$ 37 * Test the Command(String,String[]) constructor 41 Command command = new Command("abc", PARAMETERS); in testConstructor() local 42 assertEquals("name", "abc", command.getName()); in testConstructor() 43 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 47 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTestCase; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.0-rc1/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| D | SimpleCompositeCommandHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 25 import org.mockftpserver.core.command.Command; 26 import org.mockftpserver.core.command.CommandHandler; 27 import org.mockftpserver.core.command.SimpleCompositeCommandHandler; 30 import org.mockftpserver.test.AbstractTest; 35 * @version $Revision$ - $Date$ 45 private Command command; field in SimpleCompositeCommandHandlerTest 51 * Test the handleCommand() method 56 commandHandler1.handleCommand(command, session); in testHandleCommand_OneHandler_OneInvocation() [all …]
|
| /external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 22 import org.mockftpserver.test.AbstractTestCase; 27 * Tests for the Command class 30 * @version $Revision$ - $Date$ 37 * Test the Command(String,String[]) constructor 41 Command command = new Command("abc", PARAMETERS); in testConstructor() local 42 assertEquals("name", "abc", command.getName()); in testConstructor() 43 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 47 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 22 import org.mockftpserver.test.AbstractTestCase; 27 * Tests for the Command class 30 * @version $Revision$ - $Date$ 37 * Test the Command(String,String[]) constructor 41 Command command = new Command("abc", PARAMETERS); in testConstructor() local 42 assertEquals("name", "abc", command.getName()); in testConstructor() 43 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 47 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTest; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/ |
| D | CommandTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 21 import org.mockftpserver.test.AbstractTestCase; 26 * Tests for the Command class 29 * @version $Revision$ - $Date$ 36 * Test the Command(String,String[]) constructor 40 Command command = new Command("abc", PARAMETERS); in testConstructor() local 41 assertEquals("name", "abc", command.getName()); in testConstructor() 42 assertEquals("parameters", PARAMETERS, command.getParameters()); in testConstructor() 46 * Test the Command(String,List) constructor [all …]
|
| /external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/core/command/ |
| D | SimpleCompositeCommandHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 25 import org.mockftpserver.core.command.Command; 26 import org.mockftpserver.core.command.CommandHandler; 27 import org.mockftpserver.core.command.SimpleCompositeCommandHandler; 30 import org.mockftpserver.test.AbstractTest; 35 * @version $Revision$ - $Date$ 45 private Command command; field in SimpleCompositeCommandHandlerTest 51 * Test the handleCommand() method 56 commandHandler1.handleCommand(command, session); in testHandleCommand_OneHandler_OneInvocation() [all …]
|
| /external/mockftpserver/tags/1.2.3/src/test/java/org/mockftpserver/core/command/ |
| D | SimpleCompositeCommandHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 25 import org.mockftpserver.core.command.Command; 26 import org.mockftpserver.core.command.CommandHandler; 27 import org.mockftpserver.core.command.SimpleCompositeCommandHandler; 30 import org.mockftpserver.test.AbstractTest; 35 * @version $Revision$ - $Date$ 45 private Command command; field in SimpleCompositeCommandHandlerTest 51 * Test the handleCommand() method 56 commandHandler1.handleCommand(command, session); in testHandleCommand_OneHandler_OneInvocation() [all …]
|
| /external/mockftpserver/tags/1.2/src/test/java/org/mockftpserver/core/command/ |
| D | SimpleCompositeCommandHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 25 import org.mockftpserver.core.command.Command; 26 import org.mockftpserver.core.command.CommandHandler; 27 import org.mockftpserver.core.command.SimpleCompositeCommandHandler; 30 import org.mockftpserver.test.AbstractTest; 35 * @version $Revision$ - $Date$ 45 private Command command; field in SimpleCompositeCommandHandlerTest 51 * Test the handleCommand() method 56 commandHandler1.handleCommand(command, session); in testHandleCommand_OneHandler_OneInvocation() [all …]
|
| /external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/core/command/ |
| D | SimpleCompositeCommandHandlerTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package org.mockftpserver.core.command; 25 import org.mockftpserver.core.command.Command; 26 import org.mockftpserver.core.command.CommandHandler; 27 import org.mockftpserver.core.command.SimpleCompositeCommandHandler; 30 import org.mockftpserver.test.AbstractTest; 35 * @version $Revision$ - $Date$ 45 private Command command; field in SimpleCompositeCommandHandlerTest 51 * Test the handleCommand() method 56 commandHandler1.handleCommand(command, session); in testHandleCommand_OneHandler_OneInvocation() [all …]
|