mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
tests: Use EXIT_AM_SKIP instead of 77 directly
This commit is contained in:
@@ -280,9 +280,9 @@ VIRT_TEST_MAIN(mymain)
|
||||
|
||||
#else
|
||||
|
||||
int main (void)
|
||||
int main(void)
|
||||
{
|
||||
return 77; /* means 'test skipped' for automake */
|
||||
return EXIT_AM_SKIP;
|
||||
}
|
||||
|
||||
#endif /* WITH_ESX */
|
||||
|
||||
@@ -485,6 +485,9 @@ VIRT_TEST_MAIN(mymain)
|
||||
|
||||
#else
|
||||
|
||||
int main (void) { return (77); /* means 'test skipped' for automake */ }
|
||||
int main(void)
|
||||
{
|
||||
return EXIT_AM_SKIP;
|
||||
}
|
||||
|
||||
#endif /* WITH_QEMU */
|
||||
|
||||
@@ -548,6 +548,9 @@ VIRT_TEST_MAIN(mymain)
|
||||
|
||||
#else
|
||||
|
||||
int main (void) { return (77); /* means 'test skipped' for automake */ }
|
||||
int main(void)
|
||||
{
|
||||
return EXIT_AM_SKIP;
|
||||
}
|
||||
|
||||
#endif /* WITH_QEMU */
|
||||
|
||||
@@ -283,9 +283,9 @@ VIRT_TEST_MAIN(mymain)
|
||||
|
||||
#else
|
||||
|
||||
int main (void)
|
||||
int main(void)
|
||||
{
|
||||
return 77; /* means 'test skipped' for automake */
|
||||
return EXIT_AM_SKIP;
|
||||
}
|
||||
|
||||
#endif /* WITH_VMX */
|
||||
|
||||
@@ -294,9 +294,9 @@ VIRT_TEST_MAIN(mymain)
|
||||
|
||||
#else
|
||||
|
||||
int main (void)
|
||||
int main(void)
|
||||
{
|
||||
return 77; /* means 'test skipped' for automake */
|
||||
return EXIT_AM_SKIP;
|
||||
}
|
||||
|
||||
#endif /* WITH_VMX */
|
||||
|
||||
Reference in New Issue
Block a user