Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
kazoo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
TASTE
kazoo
Commits
a814a79b
Commit
a814a79b
authored
Sep 03, 2019
by
Maxime Perrotin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitrepos.estec.esa.int/taste/kazoo
parents
167ee305
10ed0de6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
4 deletions
+6
-4
templates-parser
templates-parser
+1
-1
templates/skeletons/makefile.tmplt
templates/skeletons/makefile.tmplt
+1
-1
test/.gitignore
test/.gitignore
+1
-1
test/Makefile
test/Makefile
+1
-0
test/test.py
test/test.py
+2
-1
No files found.
templates-parser
@
0655d367
Compare
844cfcc6
...
0655d367
Subproject commit
844cfcc630139c0c9c3c2c41f549946a26ee06c0
Subproject commit
0655d36712e079dcf975afb4a1075353cbfdad14
templates/skeletons/makefile.tmplt
View file @
a814a79b
...
@@ -124,7 +124,7 @@ dataview/C/built: ${DATAVIEW_UNIQ} ${DATAVIEW_ACN}
...
@@ -124,7 +124,7 @@ dataview/C/built: ${DATAVIEW_UNIQ} ${DATAVIEW_ACN}
dataview/Python/built
:
dataview/C/built
dataview/Python/built
:
dataview/C/built
mkdir
-p
$(
dir
$@
)
mkdir
-p
$(
dir
$@
)
asn2dataModel
-o
$(
dir
$@
)
-toPython
${DATAVIEW_UNIQ}
@@-- Ignore context parameters
for
python interface
asn2dataModel
-o
$(
dir
$@
)
-toPython
${DATAVIEW_UNIQ}
@@-- Ignore context parameters
for
python interface
$(MAKE)
-
j1
-
C
dataview/Python
-f
Makefile.python
$(MAKE)
-C
dataview/Python
-f
Makefile.python
@@TABLE@@
@@TABLE@@
@@IF@@
@_Language_@
=
GUI
@@IF@@
@_Language_@
=
GUI
cp dataview/Python/* @_LOWER
:
Function_Names_@/GUI/wrappers/python
cp dataview/Python/* @_LOWER
:
Function_Names_@/GUI/wrappers/python
...
...
test/.gitignore
View file @
a814a79b
test
*/output*
*/output*
test/Makefile
View file @
a814a79b
DISABLED_TESTS
=
common/
DISABLED_TESTS
=
common/
TEST_CASES
=
$(
filter-out
$(DISABLED_TESTS)
,
$(
sort
$(
dir
$(
wildcard
*
/
))))
TEST_CASES
=
$(
filter-out
$(DISABLED_TESTS)
,
$(
sort
$(
dir
$(
wildcard
*
/
))))
export
MAKEFLAGS
=
"-j
$
(grep -c ^processor /proc/cpuinfo)"
all
:
all
:
@
python3 test.py all
$(TEST_CASES)
@
python3 test.py all
$(TEST_CASES)
...
...
test/test.py
View file @
a814a79b
...
@@ -24,8 +24,9 @@ def main():
...
@@ -24,8 +24,9 @@ def main():
with
futures
.
ProcessPoolExecutor
(
max_workers
=
cpu_count
())
as
executor
:
with
futures
.
ProcessPoolExecutor
(
max_workers
=
cpu_count
())
as
executor
:
for
result
in
executor
.
map
(
partial
(
make
,
rule
),
paths
):
for
result
in
executor
.
map
(
partial
(
make
,
rule
),
paths
):
print
(
"%40s: %s"
%
(
result
[
3
],
colorMe
(
result
[
0
],
print
(
"%40s: %s"
%
(
result
[
3
]
.
replace
(
"/"
,
""
)
,
colorMe
(
result
[
0
],
'[OK]'
if
result
[
0
]
==
0
else
'[FAILED]'
)))
'[OK]'
if
result
[
0
]
==
0
else
'[FAILED]'
)))
sys
.
stdout
.
flush
()
results
.
append
(
result
)
results
.
append
(
result
)
executor
.
map
(
partial
(
make
,
'clean'
),
paths
)
executor
.
map
(
partial
(
make
,
'clean'
),
paths
)
sys
.
stdout
.
write
(
'
\n
'
)
sys
.
stdout
.
write
(
'
\n
'
)
...
...
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