/* private: internal use only. */
        enum kunit_status status;
+       char *module_name;
        char *log;
 };
 
  * &struct kunit_case object from it. See the documentation for
  * &struct kunit_case for an example on how to use it.
  */
-#define KUNIT_CASE(test_name) { .run_case = test_name, .name = #test_name }
+#define KUNIT_CASE(test_name)                  \
+               { .run_case = test_name, .name = #test_name,    \
+                 .module_name = KBUILD_MODNAME}
 
 /**
  * KUNIT_CASE_ATTR - A helper for creating a &struct kunit_case
  */
 #define KUNIT_CASE_ATTR(test_name, attributes)                 \
                { .run_case = test_name, .name = #test_name,    \
-                 .attr = attributes }
+                 .attr = attributes, .module_name = KBUILD_MODNAME}
 
 /**
  * KUNIT_CASE_SLOW - A helper for creating a &struct kunit_case
 
 #define KUNIT_CASE_SLOW(test_name)                     \
                { .run_case = test_name, .name = #test_name,    \
-                 .attr.speed = KUNIT_SPEED_SLOW }
+                 .attr.speed = KUNIT_SPEED_SLOW, .module_name = KBUILD_MODNAME}
 
 /**
  * KUNIT_CASE_PARAM - A helper for creation a parameterized &struct kunit_case
  */
 #define KUNIT_CASE_PARAM(test_name, gen_params)                        \
                { .run_case = test_name, .name = #test_name,    \
-                 .generate_params = gen_params }
+                 .generate_params = gen_params, .module_name = KBUILD_MODNAME}
 
 /**
  * KUNIT_CASE_PARAM_ATTR - A helper for creating a parameterized &struct
 #define KUNIT_CASE_PARAM_ATTR(test_name, gen_params, attributes)       \
                { .run_case = test_name, .name = #test_name,    \
                  .generate_params = gen_params,                                \
-                 .attr = attributes }
+                 .attr = attributes, .module_name = KBUILD_MODNAME}
 
 /**
  * struct kunit_suite - describes a related collection of &struct kunit_case
 
        return attr_enum_to_string(attr, speed_str_list, to_free);
 }
 
+static const char *attr_string_to_string(void *attr, bool *to_free)
+{
+       *to_free = false;
+       return (char *) attr;
+}
+
 /* Get Attribute Methods */
 
 static void *attr_speed_get(void *test_or_suite, bool is_test)
                return ((void *) suite->attr.speed);
 }
 
+static void *attr_module_get(void *test_or_suite, bool is_test)
+{
+       struct kunit_suite *suite = is_test ? NULL : test_or_suite;
+       struct kunit_case *test = is_test ? test_or_suite : NULL;
+
+       // Suites get their module attribute from their first test_case
+       if (test)
+               return ((void *) test->module_name);
+       else
+               return ((void *) suite->test_cases[0].module_name);
+}
+
 /* List of all Test Attributes */
 
 static struct kunit_attr kunit_attr_list[] = {
                .attr_default = (void *)KUNIT_SPEED_NORMAL,
                .print = PRINT_ALWAYS,
        },
+       {
+               .name = "module",
+               .get_attr = attr_module_get,
+               .to_string = attr_string_to_string,
+               .attr_default = (void *)"",
+               .print = PRINT_SUITE,
+       }
 };
 
 /* Helper Functions to Access Attributes */