test: Rename test_get_state() to ut_get_state()
authorSimon Glass <sjg@chromium.org>
Mon, 20 Jan 2025 21:25:24 +0000 (14:25 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 24 Jan 2025 20:34:39 +0000 (14:34 -0600)
Rename this function and test_set_state() so use the same ut_ prefix as
other functions in ut.h

Signed-off-by: Simon Glass <sjg@chromium.org>
include/test/ut.h
test/dm/test-driver.c
test/dm/test-uclass.c
test/test-main.c

index c8838da..2e4d8ed 100644 (file)
@@ -466,18 +466,18 @@ void ut_unsilence_console(struct unit_test_state *uts);
 void ut_set_skip_delays(struct unit_test_state *uts, bool skip_delays);
 
 /**
- * test_get_state() - Get the active test state
+ * ut_state_get() - Get the active test state
  *
  * Return: the currently active test state, or NULL if none
  */
-struct unit_test_state *test_get_state(void);
+struct unit_test_state *ut_get_state(void);
 
 /**
- * test_set_state() - Set the active test state
+ * ut_set_state() - Set the active test state
  *
  * @uts: Test state to use as currently active test state, or NULL if none
  */
-void test_set_state(struct unit_test_state *uts);
+void ut_set_state(struct unit_test_state *uts);
 
 /**
  * ut_run_tests() - Run a set of tests
index 851177c..759de3a 100644 (file)
@@ -35,7 +35,7 @@ static const struct test_ops test_ops = {
 
 static int test_bind(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        /* Private data should not be allocated */
        ut_assert(!dev_get_priv(dev));
@@ -46,7 +46,7 @@ static int test_bind(struct udevice *dev)
 
 static int test_probe(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
        struct dm_test_priv *priv = dev_get_priv(dev);
 
        /* Private data should be allocated */
@@ -59,7 +59,7 @@ static int test_probe(struct udevice *dev)
 
 static int test_remove(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        /* Private data should still be allocated */
        ut_assert(dev_get_priv(dev));
@@ -70,7 +70,7 @@ static int test_remove(struct udevice *dev)
 
 static int test_unbind(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        /* Private data should not be allocated */
        ut_assert(!dev_get_priv(dev));
@@ -121,7 +121,7 @@ static int test_manual_bind(struct udevice *dev)
 
 static int test_manual_probe(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        dm_testdrv_op_count[DM_TEST_OP_PROBE]++;
        if (!uts->force_fail_alloc)
index 9a80cc6..be4108b 100644 (file)
@@ -28,7 +28,7 @@ int test_ping(struct udevice *dev, int pingval, int *pingret)
 
 static int test_post_bind(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
        struct dm_test_perdev_uc_pdata *uc_pdata;
 
        dm_testdrv_op_count[DM_TEST_OP_POST_BIND]++;
@@ -54,7 +54,7 @@ static int test_pre_unbind(struct udevice *dev)
 static int test_pre_probe(struct udevice *dev)
 {
        struct dm_test_uclass_perdev_priv *priv = dev_get_uclass_priv(dev);
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        dm_testdrv_op_count[DM_TEST_OP_PRE_PROBE]++;
        ut_assert(priv);
@@ -65,7 +65,7 @@ static int test_pre_probe(struct udevice *dev)
 
 static int test_post_probe(struct udevice *dev)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
        struct udevice *prev = list_entry(dev->uclass_node.prev,
                                            struct udevice, uclass_node);
 
@@ -100,7 +100,7 @@ static int test_pre_remove(struct udevice *dev)
 
 static int test_init(struct uclass *uc)
 {
-       struct unit_test_state *uts = test_get_state();
+       struct unit_test_state *uts = ut_get_state();
 
        dm_testdrv_op_count[DM_TEST_OP_INIT]++;
        ut_assert(uclass_get_priv(uc));
index 8d76489..cfb3504 100644 (file)
@@ -63,12 +63,12 @@ static enum fdtchk_t fdt_action(void)
 /* This is valid when a test is running, NULL otherwise */
 static struct unit_test_state *cur_test_state;
 
-struct unit_test_state *test_get_state(void)
+struct unit_test_state *ut_get_state(void)
 {
        return cur_test_state;
 }
 
-void test_set_state(struct unit_test_state *uts)
+void ut_set_state(struct unit_test_state *uts)
 {
        cur_test_state = uts;
 }
@@ -466,7 +466,7 @@ static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
        printf("Test: %s: %s%s\n", test_name, fname, note);
 
        /* Allow access to test state from drivers */
-       test_set_state(uts);
+       ut_set_state(uts);
 
        ret = test_pre_run(uts, test);
        if (ret == -EAGAIN)
@@ -482,7 +482,7 @@ static int ut_run_test(struct unit_test_state *uts, struct unit_test *test,
        if (ret)
                return ret;
 
-       test_set_state( NULL);
+       ut_set_state(NULL);
 
        return 0;
 }