Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/nsprpub/pr/tests/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  prfz.c   Sprache: C

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/*
 * This is a simple test of the PR_fprintf() function for size_t formats.
 */


#include "prprf.h"
#include <sys/types.h>
#include <limits.h>
#include <string.h>
#include <stdint.h>

int main(int argc, char** argv) {
  char buffer[128];

  size_t unsigned_small = 266;
#ifdef XP_UNIX
  ssize_t signed_small_p = 943;
  ssize_t signed_small_n = -1;
#endif
  size_t unsigned_max = SIZE_MAX;
  size_t unsigned_min = 0;
#ifdef XP_UNIX
  ssize_t signed_max = SSIZE_MAX;
#endif

  printf("Test: unsigned small '%%zu' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zu", unsigned_small);
  if (strncmp(buffer, "266"sizeof(buffer)) != 0) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");

#ifdef XP_UNIX
  printf("Test: signed small positive '%%zd' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zd", signed_small_p);
  if (strncmp(buffer, "943"sizeof(buffer)) != 0) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");

  printf("Test: signed small negative '%%zd' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zd", signed_small_n);
  if (strncmp(buffer, "-1"sizeof(buffer)) != 0) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");
#endif

  printf("Test: 0 '%%zu' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zu", unsigned_min);
  if (strncmp(buffer, "0"sizeof(buffer)) != 0) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");

  printf("Test: SIZE_MAX '%%zx' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zx", unsigned_max);
  if (strspn(buffer, "f") != sizeof(size_t) * 2) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");

#ifdef XP_UNIX
  printf("Test: SSIZE_MAX '%%zx' : ");
  PR_snprintf(buffer, sizeof(buffer), "%zx", signed_max);
  if (*buffer != '7' || strspn(buffer + 1, "f") != sizeof(ssize_t) * 2 - 1) {
    printf("Failed, got '%s'\n", buffer);
    return -1;
  }
  printf("OK\n");
#endif

  return 0;
}

Messung V0.5
C=98 H=100 G=98

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.