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/. */
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.
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",
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",
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",
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
51 static char *incompatible_version
[] = {
54 "3.1", "3.1.1", "3.1.2", "3.1.3",
58 "10.0", "11.1", "12.14.20"
61 int main(int argc
, char **argv
)
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
]);
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
]);
83 printf("Incompatible with version %s\n", incompatible_version
[idx
]);