blob: 7978e36bf4344f0c433cf2eeb1364412caa2c262 [file] [log] [blame]
/* $Id$
*/
#include "test.h"
#include <linux/module.h>
#include <linux/kernel.h>
int init_module(void)
{
printk(KERN_INFO "PJLIB test module loaded. Starting tests...\n");
test_main();
/* Prevent module from loading. We've finished test anyway.. */
return 1;
}
void cleanup_module(void)
{
printk(KERN_INFO "PJLIB test module unloading...\n");
}
MODULE_LICENSE("GPL");