Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
72444a71
Commit
72444a71
authored
Dec 01, 2015
by
Rohit Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated sudo detection
parent
92432782
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
cmake_targets/autotests/run_exec_autotests.bash
cmake_targets/autotests/run_exec_autotests.bash
+23
-1
No files found.
cmake_targets/autotests/run_exec_autotests.bash
View file @
72444a71
...
@@ -354,16 +354,20 @@ Options
...
@@ -354,16 +354,20 @@ Options
This help
This help
-g | --run-group
-g | --run-group
Run test cases in a group. For example, ./run_exec_autotests "0101* 010102"
Run test cases in a group. For example, ./run_exec_autotests "0101* 010102"
-p
Use password for logging
'
'
}
}
function
main
()
{
function
main
()
{
RUN_GROUP
=
0
RUN_GROUP
=
0
SET_PASSWORD
=
0
passwd
=
""
test_case_group
=
""
test_case_group
=
""
test_case_group_array
=()
test_case_group_array
=()
test_case_array
=()
test_case_array
=()
echo_info
"Note that the user should be sudoer for executing certain commands, for example loading kernel modules"
echo_info
"Note that the user should be sudoer for executing certain commands, for example loading kernel modules"
read
-s
-p
"Enter Password: "
mypassword
until
[
-z
"
$1
"
]
until
[
-z
"
$1
"
]
do
do
...
@@ -373,6 +377,10 @@ until [ -z "$1" ]
...
@@ -373,6 +377,10 @@ until [ -z "$1" ]
test_case_group
=
$2
test_case_group
=
$2
echo_info
"Will execute test cases only in group
$test_case_group
"
echo_info
"Will execute test cases only in group
$test_case_group
"
shift
2
;;
shift
2
;;
-p
)
SET_PASSWORD
=
1
passwd
=
$2
shift
2
;;
-h
|
--help
)
-h
|
--help
)
print_help
print_help
exit
1
;;
exit
1
;;
...
@@ -383,6 +391,20 @@ until [ -z "$1" ]
...
@@ -383,6 +391,20 @@ until [ -z "$1" ]
esac
esac
done
done
if
[
"
$SET_PASSWORD
"
==
"1"
]
;
then
mypassword
=
$passwd
else
read
-s
-p
"Enter Password: "
mypassword
fi
tmpfile
=
`
mktemp
`
echo
\'
$passwd
\'
|
sudo
-S
-v
>
&
$tmpfile
tstsudo
=
`
cat
$tmpfile
`
if
[
"
$tstsudo
"
!=
""
]
;
then
echo
"User might not have sudo privileges. Exiting"
fi
echo
"tstsudo =
$tstsudo
"
rm
-fr
$tmpfile
xml_conf
=
"
$OPENAIR_DIR
/cmake_targets/autotests/test_case_list.xml"
xml_conf
=
"
$OPENAIR_DIR
/cmake_targets/autotests/test_case_list.xml"
...
...
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