Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Qingqing Huang
openairinterface5G
Commits
353f5f25
Commit
353f5f25
authored
9 years ago
by
Rohit Gupta
Browse files
Options
Downloads
Patches
Plain Diff
removed NFS check
parent
e0297385
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake_targets/autotests/run_exec_lte-softmodem_tests.py
+9
-10
9 additions, 10 deletions
cmake_targets/autotests/run_exec_lte-softmodem_tests.py
with
9 additions
and
10 deletions
cmake_targets/autotests/run_exec_lte-softmodem_tests.py
+
9
−
10
View file @
353f5f25
...
...
@@ -1282,18 +1282,17 @@ if localshell == 0:
print
'
\n
Cleaning Older running programs :
'
+
CleanUpOldProgs
cleanOldPrograms
(
oai_list
[
index
],
CleanUpOldProgs
,
CleanUpAluLteBox
,
ExmimoRfStop
)
result
=
oai_list
[
index
].
send
(
'
mount
'
+
NFSResultsDir
,
True
)
print
"
Mounting NFS Share
"
+
NFSResultsDir
+
"
...
"
+
result
#
result = oai_list[index].send('mount ' + NFSResultsDir, True)
#
print "Mounting NFS Share " + NFSResultsDir + "..." + result
# Check if NFS share is mounted correctly.
print
'
Checking if NFS Share<
'
+
NFSResultsDir
+
'
> is mounted correctly...
'
#result = oai_list[index].send_expect('mount | grep ' + NFSResultsDir, NFSResultsDir )
cmd
=
'
if grep -qs
'
+
NFSResultsDir
+
'
/proc/mounts; then echo
\'
'
+
NFSResultsDir
+
'
is mounted
\'
; fi
'
search_expr
=
NFSResultsDir
+
'
is mounted
'
print
"
cmd =
"
+
cmd
print
"
search_expr =
"
+
search_expr
result
=
oai_list
[
index
].
send_expect
(
cmd
,
search_expr
)
print
"
Mount NFS_Results_Dir...
"
+
result
#print 'Checking if NFS Share<' + NFSResultsDir + '> is mounted correctly...'
#cmd = 'if grep -qs '+NFSResultsDir+ ' /proc/mounts; then echo \'' + NFSResultsDir + ' is mounted\' ; fi'
#search_expr = NFSResultsDir + ' is mounted'
#print "cmd = " + cmd
#print "search_expr = " + search_expr
#result = oai_list[index].send_expect(cmd, search_expr)
#print "Mount NFS_Results_Dir..." + result
index
=
index
+
1
#oai.connect2(user,pw)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment