ucrtbase: Add __std_exception_destroy/copy

Piotr Caban piotr.caban at gmail.com
Wed Apr 13 04:35:36 CDT 2016


Hi Daniel,

please add following tests (and fix implementation):
+    src.what = NULL;
+    src.dofree = 0;
+    p___std_exception_copy(&src, &dst);
+    ok(!dst.what, "dst.what != NULL\n");
+    ok(!dst.dofree, "dst.dofree != FALSE\n");
+
+    src.what = NULL;
+    src.dofree = 1;
+    p___std_exception_copy(&src, &dst);
+    ok(!dst.what, "dst.what != NULL\n");
+    ok(!dst.dofree, "dst.dofree != FALSE\n");

Thanks,
Piotr



More information about the wine-devel mailing list