Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Platforms/C2000/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ extern "C" {
#undef far
#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

#if USE_BUFFER_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/Dos/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment()
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/Gcc/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

// There is a possibility that a compiler provides fork but not waitpid.
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/Iar/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#undef strndup
#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment()
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/Keil/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment()
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/Symbian/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <stdlib.h>
#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

int PlatformSpecificSetJmp(void (*function) (void* data), void* data)
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/VisualCpp/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#define LOCALTIME(_tm, timer) memcpy(_tm, localtime(timer), sizeof(tm));
#endif

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

static int VisualCppSetJmp(void (*function) (void* data), void* data)
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/armcc/UtestPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

#include "CppUTest/PlatformSpecificFunctions.h"

static jmp_buf test_exit_jmp_buf[10];
static jmp_buf test_exit_jmp_buf[2];
static int jmp_buf_index = 0;

TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment()
Expand Down