summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2021-09-20 01:45:55 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2021-09-20 14:26:09 +0200
commitefaab93491751ccf39108d076745c6774b263232 (patch)
treeb00abecd4a88dc2934e888b31e8176cf32af17c7 /test/lib
parent055406bb398ddf60f18c545baffcec4ee4d5646e (diff)
downloadlvm2-efaab93491751ccf39108d076745c6774b263232.tar.gz
cov: ignore syscall
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/brick-shelltest.h36
-rw-r--r--test/lib/not.c2
2 files changed, 19 insertions, 19 deletions
diff --git a/test/lib/brick-shelltest.h b/test/lib/brick-shelltest.h
index 6bc02e0d2..517c0f7d9 100644
--- a/test/lib/brick-shelltest.h
+++ b/test/lib/brick-shelltest.h
@@ -102,7 +102,7 @@ struct dir {
if ( !d )
throw syserr( "error opening directory", p );
}
- ~dir() { closedir( d ); }
+ ~dir() { (void) closedir( d ); }
};
typedef std::vector< std::string > Listing;
@@ -111,8 +111,8 @@ inline void fsync_name( std::string n )
{
int fd = open( n.c_str(), O_WRONLY );
if ( fd >= 0 ) {
- fsync( fd );
- close( fd );
+ (void) fsync( fd );
+ (void) close( fd );
}
}
@@ -464,8 +464,8 @@ struct FileSink : FdSink {
~FileSink() {
if ( fd >= 0 ) {
- fsync( fd );
- close( fd );
+ (void) fsync( fd );
+ (void) close( fd );
}
}
};
@@ -515,7 +515,7 @@ struct Source {
Source( int _fd = -1 ) : fd( _fd ) {}
virtual ~Source() {
if ( fd >= 0 )
- ::close( fd );
+ (void) ::close( fd );
}
};
@@ -570,7 +570,7 @@ struct KMsg : Source {
can_clear = false;
} else if ( lseek( fd, 0L, SEEK_END ) == (off_t) -1 ) {
fprintf( stderr, "lseek log %s %s\n", read_msg, strerror( errno ) );
- close(fd);
+ (void) close(fd);
fd = -1;
}
#endif
@@ -712,13 +712,13 @@ struct TestProcess
if ( !interactive ) {
int devnull = ::open( "/dev/null", O_RDONLY );
if ( devnull >= 0 ) { /* gcc really doesn't like to not have stdin */
- dup2( devnull, STDIN_FILENO );
- close( devnull );
+ (void) dup2( devnull, STDIN_FILENO );
+ (void) close( devnull );
} else
- close( STDIN_FILENO );
- dup2( fd, STDOUT_FILENO );
- dup2( fd, STDERR_FILENO );
- close( fd );
+ (void) close( STDIN_FILENO );
+ (void) dup2( fd, STDOUT_FILENO );
+ (void) dup2( fd, STDERR_FILENO );
+ (void) close( fd );
}
setpgid( 0, 0 );
@@ -804,7 +804,7 @@ struct TestCase {
if ( waitpid( pid, &status, WNOHANG ) == 0 ) {
system( "echo t > /proc/sysrq-trigger 2> /dev/null" );
kill( -pid, SIGKILL );
- waitpid( pid, &status, 0 );
+ (void) waitpid( pid, &status, 0 );
}
timeout = true;
io.sync( true );
@@ -897,7 +897,7 @@ struct TestCase {
void parent()
{
- ::close( child.fd );
+ (void) ::close( child.fd );
setupIO();
journal->started( id() );
@@ -957,9 +957,9 @@ struct TestCase {
exit(201);
} else if (pid == 0) {
io.close();
- chdir( options.workdir.c_str() );
+ (void) chdir( options.workdir.c_str() );
if ( !options.flavour_envvar.empty() )
- setenv( options.flavour_envvar.c_str(), flavour.c_str(), 1 );
+ (void) setenv( options.flavour_envvar.c_str(), flavour.c_str(), 1 );
child.exec();
} else {
parent();
@@ -1053,7 +1053,7 @@ struct Main {
if ( options.cont )
journal.read();
else
- ::unlink( journal.location.c_str() );
+ (void) ::unlink( journal.location.c_str() );
}
int run() {
diff --git a/test/lib/not.c b/test/lib/not.c
index 0cff13062..0245c3475 100644
--- a/test/lib/not.c
+++ b/test/lib/not.c
@@ -80,7 +80,7 @@ int main(int args, char **argv) {
val = "5";
if (val)
- setenv("LVM_EXPECTED_EXIT_STATUS", val, 1);
+ (void) setenv("LVM_EXPECTED_EXIT_STATUS", val, 1);
execvp(argv[1], &argv[1]);
/* should not be accessible */