Commit 774efacb authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32/tests: Don't test for the exact process count.

parent d0a5a325
...@@ -175,8 +175,8 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid) ...@@ -175,8 +175,8 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid)
num++; num++;
} while (pThread32Next( hSnapshot, &te )); } while (pThread32Next( hSnapshot, &te ));
} }
ok(curr_found == 1, "couldn't find self in thread list\n"); ok(curr_found, "couldn't find self in thread list\n");
ok(sub_found == 2, "couldn't find sub-process thread's in thread list\n"); ok(sub_found >= 2, "couldn't find sub-process threads in thread list\n");
/* check that first really resets enumeration */ /* check that first really resets enumeration */
curr_found = 0; curr_found = 0;
...@@ -192,8 +192,8 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid) ...@@ -192,8 +192,8 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid)
num--; num--;
} while (pThread32Next( hSnapshot, &te )); } while (pThread32Next( hSnapshot, &te ));
} }
ok(curr_found == 1, "couldn't find self in thread list\n"); ok(curr_found, "couldn't find self in thread list\n");
ok(sub_found == 2, "couldn't find sub-process thread's in thread list\n"); ok(sub_found >= 2, "couldn't find sub-process threads in thread list\n");
me.dwSize = sizeof(me); me.dwSize = sizeof(me);
ok(!pModule32First( hSnapshot, &me ), "shouldn't return a module\n"); ok(!pModule32First( hSnapshot, &me ), "shouldn't return a module\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment