Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nurlan
eepm
Commits
f961b717
Commit
f961b717
authored
Apr 07, 2022
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test_play.sh (in progress)
parent
027dd269
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
test_play.sh
tests/test_play.sh
+46
-0
No files found.
tests/test_play.sh
0 → 100755
View file @
f961b717
#!/bin/bash
fatal
()
{
exit
1
}
#set -e -x
#set -o pipefail
if
[
"
$1
"
==
"--hasher"
]
;
then
shift
B
=
"
$2
"
;
[
-n
"
$B
"
]
&&
B
=
"-b
$B
"
loginhsh
-i
-t
-p
epm
$B
-r
true
curl
#exit
HDIR
=
$(
loginhsh
-q
-t
-d
-p
epm
$B
)
cp
-a
../
$HDIR
/chroot/.in
loginhsh
-t
-p
epm
$B
-o
-r
'bash -x /.in/tests/test_play.sh --local'
exit
loginhsh
-c
-t
-p
epm
$B
exit
fi
if
[
"
$1
"
!=
"--local"
]
;
then
echo
"Run with --hasher or --local to test all apps install"
exit
fi
if
[
"
$1
"
==
"--silent"
]
;
then
epm play
--list-all
--short
|
while
read
app
;
do
echo
-n
"Installing
$app
... "
epm play
$app
</dev/null
>
/dev/null 2>/dev/null
&&
echo
-n
"DONE"
||
{
echo
"ERROR"
;
continue
;
}
echo
-n
" Removing
$app
... "
epm play
--remove
$app
</dev/null
>
/dev/null 2>/dev/null
&&
echo
-n
"DONE"
||
{
echo
"ERROR"
;
continue
;
}
done
exit
fi
epm play
--list-all
--short
|
while
read
app
;
do
echo
echo
"Installing
$app
... "
epm play
$app
</dev/null
echo
" Removing
$app
... "
epm play
--remove
$app
</dev/null
done
exit
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