started append to existing test
This commit is contained in:
parent
e41263adf0
commit
586bbe71ed
|
@ -29,6 +29,7 @@
|
||||||
// Local Prototypes
|
// Local Prototypes
|
||||||
|
|
||||||
static void append_to_empty(TestState *);
|
static void append_to_empty(TestState *);
|
||||||
|
static void append_to_existing(TestState *);
|
||||||
|
|
||||||
// Public Functions
|
// Public Functions
|
||||||
|
|
||||||
|
@ -37,6 +38,7 @@ test_append_test_log(TestState *s)
|
||||||
{
|
{
|
||||||
print("append_test_log()\n");
|
print("append_test_log()\n");
|
||||||
append_to_empty(s);
|
append_to_empty(s);
|
||||||
|
append_to_existing(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Local Functions
|
// Local Functions
|
||||||
|
@ -77,4 +79,23 @@ append_to_empty(TestState *s)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
append_to_existing(TestState *s)
|
||||||
|
{
|
||||||
|
TestState test;
|
||||||
|
TestLogEntry first, second;
|
||||||
|
print("\tappend to existing\n");
|
||||||
|
|
||||||
|
// build initial state/log
|
||||||
|
mk_sample_state(&test);
|
||||||
|
first.text = "foo";
|
||||||
|
first.next = &second;
|
||||||
|
second.text = "bar";
|
||||||
|
second.next = 0;
|
||||||
|
test.first_log = &first;
|
||||||
|
test.last_log = &second;
|
||||||
|
|
||||||
|
append_test_log(&test, "baz");
|
||||||
|
}
|
||||||
|
|
||||||
//jl
|
//jl
|
||||||
|
|
Loading…
Reference in New Issue
Block a user