17 lines
333 B
C
17 lines
333 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved.
|
|
* Copyright (C) 2021 SUSE LLC Andrea Cervesato <andrea.cervesato@suse.com>
|
|
*/
|
|
|
|
#define TST_NO_DEFAULT_MAIN
|
|
#include "tst_test.h"
|
|
|
|
int main(void)
|
|
{
|
|
tst_reinit();
|
|
TST_CHECKPOINT_WAKE_AND_WAIT(0);
|
|
|
|
return 0;
|
|
}
|