Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
6answers
4k views

Getting strange debugger message: Assertion failed: (cls), function getName: what is this?

Since I upgraded from Xcode 3.2.3 to 3.2.4 and iOS 4.0.1 to iOS 4.1 SDK, when I set a breakpoint in my code and single-step over instructions, at each step, the debugger will spit one or more of that ...
10
votes
5answers
6k views

Why do I get a C malloc assertion failure?

I am implementing a divide and conquer polynomial algorithm so I can benchmark it against an OpenCL implementation, but I can't get malloc to work. When I run the program, it allocates a bunch of ...
6
votes
8answers
275 views

What is the strategy if assertion fails

Assertion is used to check whether a condition is met(precondition, postcondition, invariants) and help programmers find holes during debugging phase. For example, void f(int *p) { assert(p); ...
5
votes
5answers
270 views

Assertive programming with JavaScript

I know why assertive programming is good, so I want to use it with JavaScript. However, I don't want to show users error boxes, and it's unusual thing. Just ignore it and make them retry could be ...
4
votes
1answer
505 views

How do I configure maven to print JUnit assertion failure message to console

I'm using the surefire maven plugin to run unit tests. My test class looks like this: public class Test1 { @org.junit.Test public void testThatFails(){ Assert.assertTrue("false is never ...
4
votes
2answers
1k views

How do i assert my exception message with JUNIT Test annotation?

i have written a few junits with @Test annotation. If my test method throws a checked exception and if i want to assert the message along with the exception, is there a way to do so with JUNIT @Test ...
3
votes
1answer
151 views

Boost Static Assertion for Type Comparision

The following problem gives me compiler errors and I am not sure how to write it correctly struct FalseType { enum { value = false }; }; struct TrueType { enum { value = true }; }; template ...
3
votes
3answers
931 views

CUDA: How to assert in kernel code?

What is the equivalent technique of an assertion in CUDA kernel code? There does not seem to be an assert for CUDA kernel code. I want a way to catch programmer mistakes easily in kernel code. A ...
3
votes
0answers
104 views

Any idea how to avoid this assertion in DDTokenCache and what it means?

I am using NSDataDetector with NSTextCheckingTypeLink to search a string for links (e.g. http://stackoverflow.com/questions) within it. Generally, it works fine, but when the string contains certain ...
3
votes
1answer
312 views

Rhino Mocks — assert no interaction with mock/stub

Is it possible to tell that a mock/stub has seen no interaction at all in RhinoMocks. Something along the lines of: logger.AssertNoInteraction(); Which would assert no method has been called on the ...
2
votes
1answer
289 views

pymongo User Assertion: 13606:'out' has to be a string or an object

I can't figure out what I'm doing wrong here. I'm using pymongo and have the following map/reduce code (all attributes of the document are directly accessible - i.e. no embedded parts relevant here: ...
2
votes
2answers
378 views

python-nose: assertion library?

Is there a library which of nose-friendly assertions things like membership and identity (eg, assert_contains(x, y), assert_is(a, b))?
2
votes
2answers
467 views

Assertion Failure

I am developing an iPad application with SDK4.2. I have a very strange error when touching any textField in my application. The first time I touch, the keyboard is shown, but when a second touch is ...
2
votes
1answer
1k views

Dynamic rule assertion in SWI-prolog

I am trying to add a rule dynamically to the knowledge base using SWI-prolog where the body of the rule is unknown beforehand. The desired rule looks something like this: rule(a) :- fact(1), ...
1
vote
4answers
59 views

Assert not null of a Singleton Object

Is it necessary to Assert.notNull of a Singleton Object? I have a class: public class ComponentFactory { private static LibraryFrame libraryFrame; public static synchronized LibraryFrame ...
1
vote
1answer
37 views

SQL Assertion/Trigger: how to set an attribute to forbid decreasing updates

I have a table called person, one of the attributes is years_worked. I need to find a way to restrict years_worked from being decreased, so that a trigger/assertion (not sure what to use here) will ...
1
vote
1answer
103 views

Why do I get an assertion failure?

This code fails when I try to debug it using VC2010: char frd[32]="word-list.txt"; FILE *rd=fopen(frd,"r"); if(rd==NULL) { std::cout<<"Coudn't open file\t"<<frd; exit(1); } char ...
1
vote
3answers
45 views

How to replace assert?

I've got other programmer code, how can put "if's", instead of assertion, in this part of it? Or perhaps, there is third, better way. public Wezel<Wartosc,Indeks> getWujek() { ...
1
vote
1answer
36 views

Creating a custom Assertion class

I'm following the Fail Fast principal. I'm wondering whether it's good practice to have an Assertion class in place in order to check my constructor paramater arguments. For example: public static ...
1
vote
1answer
222 views

JMock unexpected invocation

Below I am just trying to mock a class named TestWrapper and set 'allowing' expecations on it. However, when setting expectations I get error. When using easymock and just setting expectations, this ...
1
vote
6answers
94 views

Better way to centralize Debug.Assert and throw exception in c#?

Most of my methods has check for null argument in the function so I thought instead of writing Debug.Assert(x != null, "x should not be null"); if (x == null) { throw new ...
1
vote
2answers
147 views

python thread crash

I have a program (time lapse maker) which has two threads that updates a wx.StaticBitmap. When the two threads access the wx.StaticBitmap it crashes with the error python: xcb_io.c:221: ...
1
vote
1answer
91 views

Is it possible to “assert” in Puppet?

Is there a way to assert that a variable (or more specifically, a fact) in puppet has a particular value, and to abort the installation if it doesn't? For background, here is the situation: In most ...
1
vote
2answers
105 views

Shows an assertion error at runtime in vector c++

I want to erase an element from a vector in c++, but it shows a runtime assertion error. My code is: int i=0; ...
1
vote
2answers
118 views

I have some kind of assertion error in my little program

I have a kind of assertion error in this program, and unfortunately I'm quite new to C++ and have no idea what this means: #include "stdafx.h" #include <iostream> #include <string> ...
1
vote
2answers
423 views

How Does PHP assert() Work Exactly?

I was trying to do a simple PHP assertion to verify that a string is not empty, but got confusing results. I wasn't aware of the string evaluation feature in assert(), but checked the docs and ...
1
vote
1answer
185 views

Assertion failure in Luabind

I am currently having problems using Luabind to interface a Lua scripted AI with a C++ game. I call an update function inside a loop (once per frame) and this function retrieves informations from C++ ...
1
vote
1answer
178 views

c dynamic allocation assertion failed

I have some trouble running a program that uses this function static int upload_build_buffer(char **upload_buffer,int seq_n, char* buffer) { char *up_buffer = NULL; assert(buffer); ...
1
vote
1answer
103 views

“Assertion failed!” error when exiting program (HDF5 1.8.6)

I'm using HDF5 1.8.6 on a Windows7 32-bit system from a data acquisition C#/.Net application (using the HDFDotNet wrappers). I've noticed a runtime error(AssertionFailed) popup when I exit my ...
1
vote
0answers
112 views

Would you use Assertion or Dynamic Acl?

I'm implementing an AuthorizationService, basically it extends Zend_Acl and override authenticate() method to work with my own adapter. Let's say I've User, Article, ArticleComment, ArticleVote, ...
1
vote
1answer
397 views

Generate SAML response/assertion in java

I am working on idp-initated authentication. I want to generate SAML response to be sent to SalesForce. I have necessary values to be set in the response from metadata. Please tell me openSAML classes ...
1
vote
1answer
154 views

Colorama AssertionError in Python 3.2

Hey guys, I've recently started using Python 3.2 and have never attempted programming before. I copied the colorama folder to the lib directory in C:\Python32\lib and then made the following code in ...
1
vote
1answer
49 views

Check context of given resource

Lets imagine the situation, that I have a lot of initialized resources for example: streams, host and device memory end events, part of them are initialized in context of one GPU and the rest of them ...
1
vote
3answers
375 views

How do I terminate Javascript execution, á la exit/die/fatal assertion, etc.?

I have a loop in Javascript, I want to run console.log() in a specific iteration, and then terminate. What is the best method to go about doing this? I'm wanting something like Perl's die Dumper ...
1
vote
2answers
795 views

Is this the correct way to create SQL assertion?

in order to make the following type of assertion create assertion assert check "EMPTY SET" = (select User from Video where date=current_date() group by user having ...
1
vote
0answers
432 views

Assertion Failed! error

Hi I have a C# web application with a C# ActiveX tool that connects to the user's hardware to collect information. anyways all works fine on most computer except on some it shows me a (sometime on ...
1
vote
1answer
133 views

Why does Python disables MSCRT assertions when built with debug mode?

Python disables MSCRT assertions for debug mode during the initialization of exceptions module when it is built in debug mode. At least from the source code, I can see Python 2.6.5 doing this for ...
1
vote
1answer
362 views

Build failed in xcode 3.2.3

I have upgraded my iphone sdk from 3.1.3 to 3.2.3. But now i have a problem. The project i m working on is not compiling in new sdk. I have changed the target info settings also i.e. base sdk is set ...
1
vote
2answers
627 views

how to insert a SAML Assertion to SOAPHeader

NB-6.8 jdk-1.6.14 WSS4j-1.5.8 ,OpenSAML-2.3.0 I try to modify WSS4J-1.5.8 to operate SAML 2.0, and I could not insert a generated assertion to existing SOAP Header, the code like this: Assertion ...
1
vote
1answer
499 views

Assertion Error: _BLOCK_TYPE_IS_VALID(pHead->nBlockUse)

I get the error in the title in the following code: std::vector<short> GetIndicesFromID3DXMesh(ID3DXMesh* model) { //LPVOID * ppData; DWORD stride = sizeof(short); BYTE* ibptr = ...
0
votes
0answers
8 views

How to retrieve SAML assertion(response) using API?

In my scenario OpenAM and SalesForce are in SSO. Here OpenAM act as IDP and SalesForce is SP. I manage to retrieve Security Token from OpenAM with OpenAM-Client SDK. This token is generated using ...
0
votes
1answer
60 views

How to retrieve SAML Response from OpenAM for SalesForce

I got SAML assertion from TrustAuthorityClient API. with below Public API code securityToken = client.getSecurityToken("default", endpointURL, mexEndpointURL, (java.lang.Object)ssoToken, ...
0
votes
0answers
10 views

UISearchDisplay TableVIew Asseryion Failure with Custom Cell

I am using a SearchDisplayCOntroller to show search results. The results are shown fine when I make tableVIew cell in a traditional manner like this. UITableViewCell *cell = [tableView ...
0
votes
2answers
40 views

ORACLE: Constraint to restrict number of issues an article may be in

Stuck on this question in a revision paper. I've left the other relations out as they're not relevant to the question. Consider the following relation: Article(arID, title, journal, issue, year, ...
0
votes
0answers
30 views

Visual Studio 2010 (msvc) - failed assertion 'asssert(0)' in .lib is not working\interrupting\breaking

I have a core msvc solution consist of core.lib project, which depends on few other .lib projects and an .exe project for testing. Everything works fine there. Then I created another child ...
0
votes
2answers
46 views

Debug assertion failed . while using fscanf

Hey I've tried a lot of programs in Visual Studio and in most of them when i try taking the input from a stream ( while using fscanf ) it invariably throws a debug assertion failed error .. and goes ...
0
votes
3answers
45 views

assertions in native c++ / debugging

example of using assertions during debugging: char* append(char* pStr, const char* pAddStr) { // Verify non-null pointers assert(pStr != nullptr); assert(pAddStr != nullptr); // ...
0
votes
0answers
44 views

GLib assertion failure with simple gtk 3 line of code

I'm trying to port my gtk 2 program to gtk 3, but I keep getting "assertion failure" errors on runtime, such as G_TYPE_IS_PARAM (param_type) && param_type != G_TYPE_PARAM failure on simple ...
0
votes
2answers
104 views

Issue using DotNetOpenId with Google Apps

I am in a critical situation as we have to integrate Google Apps support to our application, which is in .Net 2.0 framework. So for this I am using DotNetOpenId v2.5.7. Earlier in order to achieve ...
0
votes
1answer
170 views

C++ - Boost Thread/Bind/Shared_ptr : Assert fault

I am having a small issue that I cannot solve. I am making a small server to redirect my syslog messages to it. It is very basic, but I would like to know what I did wrong cause I keep have the ...

1 2