backout 29799f914cab, Bug 917642 - [Helix] Please update the helix blobs
[gecko.git] / nsprpub / pr / tests / vercheck.c
blob6cfe137474e6e4520114488673de465772cc85f9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /*
7 * File: vercheck.c
9 * Description:
10 * This test tests the PR_VersionCheck() function. The
11 * compatible_version and incompatible_version arrays
12 * need to be updated for each patch or release.
14 * Tested areas: library version compatibility check.
17 #include "prinit.h"
19 #include <stdio.h>
20 #include <stdlib.h>
23 * This release (4.10.2) is backward compatible with the
24 * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, 4.6.x, 4.7.x,
25 * 4.8.x, 4.9.x, 4.10, and 4.10.1 releases.
26 * It, of course, is compatible with itself.
28 static char *compatible_version[] = {
29 "4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3",
30 "4.2", "4.2.1", "4.2.2", "4.3", "4.4", "4.4.1",
31 "4.5", "4.5.1",
32 "4.6", "4.6.1", "4.6.2", "4.6.3", "4.6.4", "4.6.5",
33 "4.6.6", "4.6.7", "4.6.8",
34 "4.7", "4.7.1", "4.7.2", "4.7.3", "4.7.4", "4.7.5",
35 "4.7.6",
36 "4.8", "4.8.1", "4.8.2", "4.8.3", "4.8.4", "4.8.5",
37 "4.8.6", "4.8.7", "4.8.8", "4.8.9",
38 "4.9", "4.9.1", "4.9.2", "4.9.3", "4.9.4", "4.9.5",
39 "4.9.6",
40 "4.10", "4.10.1",
41 PR_VERSION
45 * This release is not backward compatible with the old
46 * NSPR 2.1 and 3.x releases.
48 * Any release is incompatible with future releases and
49 * patches.
51 static char *incompatible_version[] = {
52 "2.1 19980529",
53 "3.0", "3.0.1",
54 "3.1", "3.1.1", "3.1.2", "3.1.3",
55 "3.5", "3.5.1",
56 "4.10.3",
57 "4.11", "4.11.1",
58 "10.0", "11.1", "12.14.20"
61 int main(int argc, char **argv)
63 int idx;
64 int num_compatible = sizeof(compatible_version) / sizeof(char *);
65 int num_incompatible = sizeof(incompatible_version) / sizeof(char *);
67 printf("NSPR release %s:\n", PR_VERSION);
68 for (idx = 0; idx < num_compatible; idx++) {
69 if (PR_VersionCheck(compatible_version[idx]) == PR_FALSE) {
70 fprintf(stderr, "Should be compatible with version %s\n",
71 compatible_version[idx]);
72 exit(1);
74 printf("Compatible with version %s\n", compatible_version[idx]);
77 for (idx = 0; idx < num_incompatible; idx++) {
78 if (PR_VersionCheck(incompatible_version[idx]) == PR_TRUE) {
79 fprintf(stderr, "Should be incompatible with version %s\n",
80 incompatible_version[idx]);
81 exit(1);
83 printf("Incompatible with version %s\n", incompatible_version[idx]);
86 printf("PASS\n");
87 return 0;