You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
462 B

// SPDX-License-Identifier: GPL-2.0-or-later
/* Copyright (c) 2018 Oracle and/or its affiliates. All Rights Reserved. */
#include <stdio.h>
#include "tst_kernel.h"
int main(int argc, const char *argv[])
{
const char *name;
int i;
if (argc < 2) {
fprintf(stderr, "Please provide kernel driver list\n");
return 1;
}
for (i = 1; (name = argv[i]); ++i) {
if (tst_check_driver(name)) {
fprintf(stderr, "%s", name);
return 1;
}
}
return 0;
}