| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | package.json | 16 "compile": "npm run tsc", 18 "build": "npm run clean && npm run compile && npm run webpack && npm run pack:linter", 19 "postinstall": "node scripts/install-ohos-typescript.mjs && npm run build", 21 "pretest": " npm run fix", 22 "test": "npm run test_all && npm run test_all_sdk && npm run test_ts_import_ets", 23 …"test_all": "npm run testrunner -- -d test/main,test/rules,test/regression,test/extended_features", 24 "test_main": "npm run testrunner -- -d test/main", 25 "test_rules": "npm run testrunner -- -d test/rules", 26 "test_regression": "npm run testrunner -- -d test/regression", 27 "test_extended_features": "npm run testrunner -- -d test/extended_features", [all …]
|
| D | README.md | 19 Run the following command to install all project dependencies and build the project: 25 Run the following command to only build project sources: 28 npm run build 33 Run the following command from the same directory: 59 To run all tests, use the following command: 65 To run only certain tests, use the `testrunner` command with corresponding arguments: 68 npm run testrunner -- [args] 74 npm run testrunner -- -d test/main -p {array,object}* 77 will run the tests in `test/main` directory that match the glob pattern `{array,object}*` (i.e. tes…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tools/declgen_ts2sts/ |
| D | package.json | 13 "postinstall": "npm run build", 16 "compile": "npm run tsc", 17 "build": "npm run clean && npm run compile && npm run webpack && npm run pack:declgen", 19 "pretest": "npm run fix && npm run eslint-check", 20 "test_main": "npm run compile && rimraf test/results && node build/src/TestRunner.js test", 22 "eslint-fix": "npm run eslint-check -- --fix", 24 "fix": "npm run prettier-fix && npm run eslint-fix", 26 …"test": "npm run compile && TEST_OUT=build/test_artifacts && rimraf ${TEST_OUT} && node build/src/…
|
| D | README.md | 20 npm run build 23 ## Run section in DECLGEN TOOL FOR `.d.sts` FILES GENERATION 26 npm run declgen -- <declgen options> 32 npm run build 33 npm run declgen -- -f my_file.ts 40 To see all available options, run the following command: 43 npm run declgen -- --help 62 npm run test
|
| /arkcompiler/ets_frontend/test/scripts/ |
| D | readme.md | 5 2. Run xts test which in auto_xts_test 6 3. Run sdk_test which in sdk_test 7 4. Run performance test which in performance_test 8 5. Run spider script which in get commit log 13 …t will run downloading sdk,xts, sdk_test,performance_test, get commit log script, and send email, … 14 If you do not want to run test immediately, delete run_all() 18 Do not close the cmd or terminal, or it will not run at the time you specified. 19 All tests can run without others, read the seperate readme for more details.
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/ |
| D | README.md | 6 ## Build abckit and run scenario tests: 11 ## Run separate test or tests 20 `"AbckitScenarioCTestClean*"` - run only c api tests 21 `"AbckitScenarioCppTestClean*"` - run only cpp api tests 22 `"*<name>"` - run test with name `<name>` from c and ccp apis 23 `"AbckitScenarioCppTestClean.<name>"` - run test with name `<name>` from ccp apis 24 `"AbckitScenarioCTestClean.<name>"` - run test with name `<name>` from c apis 28 # Run tests with debug output 34 and run tests from `out/x64.debug`
|
| /arkcompiler/ets_frontend/test/scripts/sdk_test/ |
| D | readme.md | 5 2) Verify if the application of the compiled package can run normally (this feature is under develo… 22 #### Daily Run 23 The daily run will download the SDK built on the current day from the trunk branch and use it to pe… 24 Run the command: `python entry.py` 26 #### Manual Run 27 Run the command: `python run.py` 28 By default, it will run all the test items. Optional parameters can be viewed through `--help`.
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/ |
| D | README.md | 50 --verify-tests Run verifier against positive tests (option for test checking) 51 --with-quickener Run quickener tool after assembly 53 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit… 54 …--run-ignored Run ignored tests, which have "runner-option: ignore" tag in test def… 63 --prlimit OPTS Run panda via prlimit with options 81 To run all tests, add `-a` options. 83 To run only tests with `ignore` runner option, add `--run-ignored` options. 95 Run all tests marked with bugid 1316. 107 ### How to run all tests 110 If you want to run all tests, you can do the following: [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/ |
| D | README.md | 50 --verify-tests Run verifier against positive tests (option for test checking) 51 --with-quickener Run quickener tool after assembly 53 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit… 54 …--run-ignored Run ignored tests, which have "runner-option: ignore" tag in test def… 63 --prlimit OPTS Run panda via prlimit with options 81 To run all tests, add `-a` options. 83 To run only tests with `ignore` runner option, add `--run-ignored` options. 95 Run all tests marked with bugid 1316. 107 ### How to run all tests 110 If you want to run all tests, you can do the following: [all …]
|
| /arkcompiler/toolchain/tooling/client/tcpServer/test/js_test_case/ |
| D | js_test.py | 37 subprocess.run( 62 subprocess.run( 133 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 138 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 142 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 149 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 153 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 163 … subprocess.run("%s shell wukong special -t 600,600 -c 1" % self.hdctool, stdout=subprocess.PIPE) 176 subprocess.run( 184 subprocess.run( [all …]
|
| /arkcompiler/ets_runtime/test/aottest/supercallforward/ |
| D | supercallforward.ts | 25 function run(cb: () => void) { function 265 run(testChild0Arg); 266 run(testChild1Arg); 267 run(testChild2Arg); 268 run(testChild3Arg); 269 run(testGrandChild0Arg); 270 run(testGrandChild1Arg); 271 run(testGrandChild2Arg); 272 run(testGrandChild3Arg); 277 run(testChildRestArgs0Arg); [all …]
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
| D | test_unit.py | 74 run: RunResult = res.execution_forks[0] 75 test.assertTrue(95.587 == run.avg_time) 76 test.assertTrue(90.999 == run.iterations[0]) 77 test.assertTrue(0 == len(run.warmup)) 78 test.assertTrue('ns/op' == run.unit) 89 run: RunResult = res.execution_forks[0] 90 test.assertTrue(101.1 == run.avg_time) 91 test.assertTrue(100.0 == run.iterations[0]) 92 test.assertTrue(1 == len(run.warmup)) 93 test.assertTrue('ns/op' == run.unit)
|
| /arkcompiler/ets_runtime/test/aottest/ts_inline_extends/ |
| D | ts_inline_extends.ts | 19 run() { 20 print("A.run") 25 run() { method in B 26 print("B.run") 37 this.obj.run()
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | aot_cha_vcalls.pa | 48 #! RUN options: "--boot-panda-files=../../vcalls_aux.checked/test.abc", entry: "AotChaTest… 56 #! RUN options: "--boot-panda-files=../../vcalls_aux.checked/test.abc", entry: "AotChaTest… 63 #! RUN options: "--boot-panda-files=../../vcalls_aux.checked/test.abc", entry: "AotChaTest… 68 #! RUN options: "--boot-panda-files=../../vcalls_aux.checked/test.abc", entry: "AotChaTest… 72 #! RUN options: "", entry: "AotChaTest::main", abort: 6 77 #! RUN options: "--boot-panda-files=../test.abc --enable-an", entry: "_GLOBAL::Compilation… 83 #! RUN options: "--boot-panda-files=../test.abc --enable-an", entry: "_GLOBAL::Compilation… 88 #! RUN options: "--boot-panda-files=../test.abc --enable-an", entry: "_GLOBAL::Compilation… 94 #! RUN options: "--boot-panda-files=../test.abc --enable-an", entry: "_GLOBAL::Compilation… 98 #! RUN options: "--boot-panda-files=../test.abc --enable-an", entry: "_GLOBAL::Compilation… [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/models/ |
| D | code.test.ts | 47 it('should correctly map compile, disassembly, and run fields from API response', () => { 51 run: { output: 'run output', error: 'run error', exit_code: 3 }, 59 run: { output: 'run output', error: 'run error', exit_code: 3 }, 70 run: { output: '', error: '', exit_code: -1 },
|
| /arkcompiler/ets_frontend/test262/ |
| D | README.md | 16 ## 2 Run test cases 37 --es51 Run test262 ES5.1 version 39 Run test262 - ES2015. all: Contains all use cases for 42 --esnext Run test262 - ES.next. 43 --engine FILE Other engine binarys to run tests with 47 --threads THREADS Run this many tests in parallel. Note that the browser 50 --ark-aot Run test262 with aot 61 ### 2.2 Run all the test cases 67 ### 2.3 Run `es51` related test cases 75 ### 2.4 Run `es2015` related test cases [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/ |
| D | README.md | 1 # How to run ets-func-tests and cts tests locally 8 ## Run ets-func-tests in INT mode 13 ## Run ets-func-tests in JIT mode 18 ## Run cts tests
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | launch_test.sts | 17 //! RUN force_jit: true, options: "", entry: "ETSGLOBAL::main" 26 //! RUN force_jit: true, options: "--compiler-force-unresolved=true", entry: "ETSGLOBAL::m… 44 //! RUN entry: "ETSGLOBAL::main" 54 //! RUN entry: "ETSGLOBAL::main" 57 //! RUN force_jit: true, options: "", entry: "ETSGLOBAL::main1" 74 //! RUN entry: "ETSGLOBAL::main1" 84 //! RUN entry: "ETSGLOBAL::main1" 87 //! RUN force_jit: true, options: "--compiler-force-unresolved=true", entry: "ETSGLOBAL::m… 105 //! RUN entry: "ETSGLOBAL::main1" 115 //! RUN entry: "ETSGLOBAL::main1" [all …]
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/ |
| D | readme.md | 17 # Run all js and ts examples on Node (needs node and tsc): 18 ./run-vmb.sh all -p node_host `pwd`/examples/benchmarks 20 # Run all only js examples on Node (needs node installed): 21 ./run-vmb.sh all -l js -p node_host `pwd`/examples/benchmarks 24 ./run-vmb.sh help 27 ./run-vmb.sh list 32 Wrapper script `run-vmb.sh` has all the module functionality, 46 # Run all js and ts tests in current dir 49 # Run only js tests with tag 'sanity' from 'examples' 57 # Run sts and ts tests on ArkTS in [all …]
|
| /arkcompiler/toolchain/test/autotest/aw/ |
| D | application.py | 31 stop_result = subprocess.run(stop_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 39 … uninstall_result = subprocess.run(uninstall_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 47 install_result = subprocess.run(install_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 56 start_result = subprocess.run(start_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 63 ps_result = subprocess.run(ps_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 86 attach_result = subprocess.run(attach_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 96 … screen_info = subprocess.run(get_screen_info_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 103 click_result = subprocess.run(click_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 115 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 122 … keep_awake_result = subprocess.run(keep_awake_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/ |
| D | README.md | 3 This is a React application that is built and run in a Docker container. This README contains instr… 41 To run tests for the application: 58 npm run build 77 Run the container with port mapping and a specific name: 80 docker run -d -p 3000:80 --name playground-front playground-front
|
| /arkcompiler/ets_frontend/ets2panda/linter/stats_calculator/ |
| D | package.json | 9 "build": "npm run clean && npm run tsc", 10 "postinstall": "npm run build"
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | README.md | 3 Checked tests is the tests that have additional functionality to check result of the test being run. 17 * **RUN** run panda application, following named arguments are allowed: 18 - *force_jit: bool* - run jit compilation for every executed method 23 * **RUN_PAOC** run paoc application on the compiled panda file. Output panda file will be passed to… 24 run. Thus, `RUN_PAOC` command must be placed before `RUN` command.
|
| /arkcompiler/ets_frontend/ets2panda/linter/cookbook_convertor/ |
| D | package.json | 9 "build": "npm run clean && npm run tsc", 10 "postinstall": "npm run build"
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | pass.h | 233 return pass.Run(data_, std::forward<Args>(args)...); in RunPass() 242 bool Run(PassData* data) in Run() function 247 if (!preCompileChecker.Run()) { in Run() 257 bool Run(PassData* data) in Run() function 263 pgoTypeInfer.Run(); in Run() 270 bool Run(PassData *data) in Run() function 296 bool Run(PassData *data) in Run() function 310 inductionVariableAnalysis.Run(); in Run() 317 bool Run(PassData* data) in Run() function 354 bool Run(PassData* data) in Run() function [all …]
|