This commit is contained in:
2024-11-12 21:35:41 +00:00
parent dd979f34c8
commit 8bcd0a467c
2 changed files with 1 additions and 1 deletions

View File

@@ -170,7 +170,6 @@ list_insert (struct list_elem *before, struct list_elem *elem)
{
ASSERT (is_interior (before) || is_tail (before));
ASSERT (elem != NULL);
// Sanity checks to prevent (some) loop lists
ASSERT (before != elem);
ASSERT (before->prev != elem);

View File

@@ -20,6 +20,7 @@ test_main (void)
int fd;
CHECK (create (file_name, sizeof buf1), "create \"%s\"", file_name);
exec_children ("child-syn-wrt", children, CHILD_CNT);
wait_children (children, CHILD_CNT);