Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix backend tests #10656

Merged
merged 2 commits into from
Jan 20, 2021
Merged

Fix backend tests #10656

merged 2 commits into from
Jan 20, 2021

Conversation

M0ses
Copy link
Contributor

@M0ses M0ses commented Jan 20, 2021

Adapt test cases to new backend behavior

@M0ses M0ses requested a review from mlschroe January 20, 2021 07:53
@codecov
Copy link

codecov bot commented Jan 20, 2021

Codecov Report

Merging #10656 (7ef0b95) into master (ce8e211) will increase coverage by 0.00%.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master   #10656   +/-   ##
=======================================
  Coverage   91.08%   91.09%           
=======================================
  Files         584      584           
  Lines       21495    21495           
=======================================
+ Hits        19579    19580    +1     
+ Misses       1916     1915    -1     

@@ -226,7 +226,8 @@ $got = readxml("$ev_dir/$file_name",$BSXML::event);
$expected = {
'repository' => 'openSUSE_Leap_42.1',
'project' => 'devel:languages:perl',
'type' => 'publish'
'type' => 'publish',
'time' => time(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Das ist so aber ein race!

rmdir $_ || warn "$_: $!"
} else {
unlink $_ || warn "$_: $!";
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not:

-d $_ ? rmdir $_ : unlink $_ or warn("$_: $!");

without this patch you get warnings like this:

t/data/0015/events/x86_64/unblocked::devel:languages:perl::openSUSE_Leap_42.1: No such file or directory at t/0015-BSSched-EventSource-Directory.t line 264.

after successful completion of all jobs.
This is missleading because $! is _not_ reset and not meant to detect an error.
@mlschroe mlschroe merged commit 6254c71 into openSUSE:master Jan 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants