提交 4540f8d2 编写于 作者: M Matthias Bolte

tests: Use EXIT_AM_SKIP instead of 77 directly

上级 6ca8d68d
......@@ -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 */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册