Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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
8 *
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.
13 *
14 * Tested areas: library version compatibility check.
15 */
17 #include "prinit.h"
19 #include <stdio.h>
20 #include <stdlib.h>
22 /*
23 * This release (4.10.6) 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, 4.10.1, 4.10.2, 4.10.3, 4.10.4, and
26 * 4.10.5 releases.
27 * It, of course, is compatible with itself.
28 */
29 static char *compatible_version[] = {
30 "4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3",
31 "4.2", "4.2.1", "4.2.2", "4.3", "4.4", "4.4.1",
32 "4.5", "4.5.1",
33 "4.6", "4.6.1", "4.6.2", "4.6.3", "4.6.4", "4.6.5",
34 "4.6.6", "4.6.7", "4.6.8",
35 "4.7", "4.7.1", "4.7.2", "4.7.3", "4.7.4", "4.7.5",
36 "4.7.6",
37 "4.8", "4.8.1", "4.8.2", "4.8.3", "4.8.4", "4.8.5",
38 "4.8.6", "4.8.7", "4.8.8", "4.8.9",
39 "4.9", "4.9.1", "4.9.2", "4.9.3", "4.9.4", "4.9.5",
40 "4.9.6",
41 "4.10", "4.10.1", "4.10.2", "4.10.3", "4.10.4",
42 "4.10.5",
43 PR_VERSION
44 };
46 /*
47 * This release is not backward compatible with the old
48 * NSPR 2.1 and 3.x releases.
49 *
50 * Any release is incompatible with future releases and
51 * patches.
52 */
53 static char *incompatible_version[] = {
54 "2.1 19980529",
55 "3.0", "3.0.1",
56 "3.1", "3.1.1", "3.1.2", "3.1.3",
57 "3.5", "3.5.1",
58 "4.10.7",
59 "4.11", "4.11.1",
60 "10.0", "11.1", "12.14.20"
61 };
63 int main(int argc, char **argv)
64 {
65 int idx;
66 int num_compatible = sizeof(compatible_version) / sizeof(char *);
67 int num_incompatible = sizeof(incompatible_version) / sizeof(char *);
69 printf("NSPR release %s:\n", PR_VERSION);
70 for (idx = 0; idx < num_compatible; idx++) {
71 if (PR_VersionCheck(compatible_version[idx]) == PR_FALSE) {
72 fprintf(stderr, "Should be compatible with version %s\n",
73 compatible_version[idx]);
74 exit(1);
75 }
76 printf("Compatible with version %s\n", compatible_version[idx]);
77 }
79 for (idx = 0; idx < num_incompatible; idx++) {
80 if (PR_VersionCheck(incompatible_version[idx]) == PR_TRUE) {
81 fprintf(stderr, "Should be incompatible with version %s\n",
82 incompatible_version[idx]);
83 exit(1);
84 }
85 printf("Incompatible with version %s\n", incompatible_version[idx]);
86 }
88 printf("PASS\n");
89 return 0;
90 }