summaryrefslogtreecommitdiff
path: root/testbed
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2010-08-14 18:49:47 +0200
committerMarti Maria <info@littlecms.com>2010-08-14 18:49:47 +0200
commit60b8b17bd7a9b77e00528c623f6f95a3541be649 (patch)
tree5636b7fe63c2d0dc32cde6c205832897963f9845 /testbed
parente53c88b8f0fda2e11be191bf9a207b2ed141df30 (diff)
downloadlcms2-60b8b17bd7a9b77e00528c623f6f95a3541be649.tar.gz
Fixed a bug in psid and profile sequence tag
Diffstat (limited to 'testbed')
-rw-r--r--testbed/testcms2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testbed/testcms2.c b/testbed/testcms2.c
index d18e67b..1fff6c0 100644
--- a/testbed/testcms2.c
+++ b/testbed/testcms2.c
@@ -4827,6 +4827,7 @@ cmsInt32Number CheckProfileCreation(void)
h = cmsCreateProfilePlaceholder(DbgThread());
if (h == NULL) return 0;
+ cmsSetProfileVersion(h, 4.2);
if (cmsGetTagCount(h) != 0) { Fail("Empty profile with nonzero number of tags"); return 0; }
if (cmsIsTag(h, cmsSigAToB0Tag)) { Fail("Found a tag in an empty profile"); return 0; }
@@ -7373,8 +7374,6 @@ int main(int argc, char* argv[])
PrintSupportedIntents();
- CheckRGBPrimaries();
-
// Create utility profiles
Check("Creation of test profiles", CreateTestProfiles);
@@ -7561,3 +7560,5 @@ int main(int argc, char* argv[])
return TotalFail;
}
+
+