vercheck.c (3073B)
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/. */ 5 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 */ 16 17 #include "prinit.h" 18 19 #include <stdio.h> 20 #include <stdlib.h> 21 22 /* 23 * This release (4.10.10) 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.x and 4.11.X releases. 26 * It, of course, is compatible with itself. 27 */ 28 static char* compatible_version[] = { 29 "4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3", "4.2", 30 "4.2.1", "4.2.2", "4.3", "4.4", "4.4.1", "4.5", "4.5.1", 31 "4.6", "4.6.1", "4.6.2", "4.6.3", "4.6.4", "4.6.5", "4.6.6", 32 "4.6.7", "4.6.8", "4.7", "4.7.1", "4.7.2", "4.7.3", "4.7.4", 33 "4.7.5", "4.7.6", "4.8", "4.8.1", "4.8.2", "4.8.3", "4.8.4", 34 "4.8.5", "4.8.6", "4.8.7", "4.8.8", "4.8.9", "4.9", "4.9.1", 35 "4.9.2", "4.9.3", "4.9.4", "4.9.5", "4.9.6", "4.10", "4.10.1", 36 "4.10.2", "4.10.3", "4.10.4", "4.10.5", "4.10.6", "4.10.7", "4.10.8", 37 "4.10.9", "4.10.10", "4.11", "4.12", "4.13", "4.14", "4.15", 38 "4.16", "4.17", "4.18", "4.19", "4.20", "4.21", "4.22", 39 "4.23", "4.24", "4.25", "4,26", "4.27", "4.28", "4.29", 40 "4.30", "4.31", "4.32", "4.33", "4.34", "4.35", "4.36", 41 "4.37", "4.38", "4.38.1", 42 PR_VERSION}; 43 44 /* 45 * This release is not backward compatible with the old 46 * NSPR 2.1 and 3.x releases. 47 * 48 * Any release is incompatible with future releases and 49 * patches. 50 */ 51 static char* incompatible_version[] = { 52 "2.1 19980529", "3.0", "3.0.1", "3.1", "3.1.1", 53 "3.1.2", "3.1.3", "3.5", "3.5.1", "4.38.3", 54 "4.39", "4.39.1", "10.0", "11.1", "12.14.20"}; 55 56 int main(int argc, char** argv) { 57 int idx; 58 int num_compatible = sizeof(compatible_version) / sizeof(char*); 59 int num_incompatible = sizeof(incompatible_version) / sizeof(char*); 60 61 printf("NSPR release %s:\n", PR_VERSION); 62 for (idx = 0; idx < num_compatible; idx++) { 63 if (PR_VersionCheck(compatible_version[idx]) == PR_FALSE) { 64 fprintf(stderr, "Should be compatible with version %s\n", 65 compatible_version[idx]); 66 exit(1); 67 } 68 printf("Compatible with version %s\n", compatible_version[idx]); 69 } 70 71 for (idx = 0; idx < num_incompatible; idx++) { 72 if (PR_VersionCheck(incompatible_version[idx]) == PR_TRUE) { 73 fprintf(stderr, "Should be incompatible with version %s\n", 74 incompatible_version[idx]); 75 exit(1); 76 } 77 printf("Incompatible with version %s\n", incompatible_version[idx]); 78 } 79 80 printf("PASS\n"); 81 return 0; 82 }