Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ZhouShuya
OpenXG-RAN
Commits
8990e3bf
Commit
8990e3bf
authored
Oct 13, 2015
by
Rohit Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated test case list from older make pre-ci build system
parent
efc4808a
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
772 additions
and
285 deletions
+772
-285
cmake_targets/autotests/README.txt
cmake_targets/autotests/README.txt
+61
-195
cmake_targets/autotests/run_exec_autotests.bash
cmake_targets/autotests/run_exec_autotests.bash
+111
-68
cmake_targets/autotests/test_case_list.xml
cmake_targets/autotests/test_case_list.xml
+598
-20
cmake_targets/tools/test_helper
cmake_targets/tools/test_helper
+2
-2
No files found.
cmake_targets/autotests/README.txt
View file @
8990e3bf
This diff is collapsed.
Click to expand it.
cmake_targets/autotests/run_exec_autotests.bash
View file @
8990e3bf
This diff is collapsed.
Click to expand it.
cmake_targets/autotests/test_case_list.xml
View file @
8990e3bf
This diff is collapsed.
Click to expand it.
cmake_targets/tools/test_helper
View file @
8990e3bf
...
@@ -33,7 +33,7 @@ xUnit_fail() {
...
@@ -33,7 +33,7 @@ xUnit_fail() {
currtime=$(date +%s.%N)
currtime=$(date +%s.%N)
time=$(echo "$currtime - $XUNIT_START" | bc -l)
time=$(echo "$currtime - $XUNIT_START" | bc -l)
xml="<testcase classname='$class' name='$test_case' run='$run_index' time='$time' RESULT='$result'></testcase>"
xml="<testcase classname='$class' name='$test_case' run='$run_index' time='$time' RESULT='$result'></testcase>"
XUNIT_TESTCASES_XML="$
xml \n$XUNIT_TESTCASES_XML
"
XUNIT_TESTCASES_XML="$
XUNIT_TESTCASES_XML \n$xml
"
XUNIT_FAILED=$((XUNIT_FAILED+1))
XUNIT_FAILED=$((XUNIT_FAILED+1))
}
}
...
@@ -52,7 +52,7 @@ xUnit_success() {
...
@@ -52,7 +52,7 @@ xUnit_success() {
currtime=$(date +%s.%N)
currtime=$(date +%s.%N)
time=$(echo "$currtime - $XUNIT_START" | bc -l)
time=$(echo "$currtime - $XUNIT_START" | bc -l)
xml="<testcase classname='$class' name='$test_case' run='$run_index' time='$time' RESULT='$result'></testcase>"
xml="<testcase classname='$class' name='$test_case' run='$run_index' time='$time' RESULT='$result'></testcase>"
XUNIT_TESTCASES_XML="$
xml \n$XUNIT_TESTCASES_XML
"
XUNIT_TESTCASES_XML="$
XUNIT_TESTCASES_XML \n$xml
"
XUNIT_SUCCESS=$((XUNIT_SUCCESS+1))
XUNIT_SUCCESS=$((XUNIT_SUCCESS+1))
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment