Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor 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
mpim-sw
cdo
Commits
8f9f8f80
Commit
8f9f8f80
authored
1 year ago
by
Oliver Heidmann
Committed by
Uwe Schulzweida
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
added test for preceeding operators of groups
parent
7a4295f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!137
fixed operator-nodes not being removed properly from the stack
,
!136
fixed operator-nodes not being removed properly from the stack
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/bandit_tests/parser.cc
+13
-0
13 additions, 0 deletions
test/bandit_tests/parser.cc
with
13 additions
and
0 deletions
test/bandit_tests/parser.cc
+
13
−
0
View file @
8f9f8f80
...
...
@@ -268,6 +268,19 @@ go_bandit([]() {
"-inVariable_out1"
,
"file3"
,
"out"
},
"out [ in2_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]"
);
check
(
"handles preceeding operator of finished variable input correctly "
"variable input at the end"
,
{
"-in2_out1"
,
"-inVariable_out1"
,
"["
,
"file1"
,
"file2"
,
"]"
,
"-inVariable_out1"
,
"file3"
,
"out"
},
"out [ in2_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]"
);
check
(
"handles preceeding operator of finished variable input correctly "
"variable input at the end"
,
{
"-in2_out1"
,
"-in1_out1"
,
"-inVariable_out1"
,
"["
,
"file1"
,
"file2"
,
"]"
,
"-inVariable_out1"
,
"file3"
,
"out"
},
"out [ in2_out1 in1_out1 [ inVariable_out1 [ file1 file2 ] inVariable_out1 "
"[ file3 ] ] ]"
);
});
bandit
::
describe
(
"Apply feature"
,
[
&
]()
{
...
...
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