Tagged Questions
The sanity-check tag has no wiki summary.
5
votes
4answers
173 views
C: Throw error on parameter check or let it hit the fan?
I have a simple design(?) question.
I'm writing a simple program, that has a couple of functions that look like these.
float foo (float* m,size_t n){
float result;
//do some calculations, ...
5
votes
5answers
5k views
C# check that a file destination is valid
Is there a standard function to check that a specified directory is valid?
The reason I ask is that I am receiving an absolute directory string and filename from a user and I want to sanity check the ...
2
votes
4answers
182 views
C#: reducing line noise in sanity checks [closed]
Possible Duplicate:
Shortcut for “null if object is null, or object.member if object is not null”
I wish there were a way to make this type of test simpler in C#:
if (foo != ...
2
votes
2answers
105 views
List of sanity test generators for C++?
I have found only
http://ispras.linux-foundation.org/index.php/API_Sanity_Autotest
because it is listed on Wikipedia. Is there any other Sanity suite for C++?
2
votes
3answers
107 views
Looking for advancement and sanity advice for a Manufacturing Test Developer
I recently got a job for a company that develops and manufactures high grade electronics (company will not be named for reasons that will become obvious).
I was hired from being a floor tester to ...
1
vote
4answers
193 views
How to enforce a certain number or range of affected rows in SQL Server or ASP.NET C#
for some SQL queries I know the expected number of rows that must be affected by UPDATE, DELETE or INSERT statements. It could be a number such as 1 or a range such as 0-1 or 1-2 etc.
What is the ...
1
vote
4answers
796 views
PHP Sanity Check
I am looking for applications or methods for performing sanity checks of php code.
I hope to to avoid finding out about the coding mistakes the hard way, but instead find them before publishing the ...
1
vote
3answers
210 views
Can a browser correct a “mangled url” automatically?
I faced a problem some time back on a particular website. It has given many hyperlinks on it to other sites. e.g. of one such URL is:
http://http//example.com/a9noaa.asp
It is clearly incorrect ...
0
votes
2answers
42 views
model.save() not called when loading Django fixtures?
I am overriding my Django model save() method, so I can do some extra sanity checking on the object. (Is save() the correct place to do this?)
It doesn't appear that my fixtures/initial_fixtures.yaml ...
0
votes
1answer
89 views
MySQL and PHP synchronicity sanity check
I'm troubleshooting a bug and trying to rule out all possible explanations for why I'm witnessing the behavior that I am. I'm executing a number of MySQL queries in PHP (via CodeIgniter's Active ...
0
votes
2answers
88 views
Manipulating the address of a variable to store a smaller type?
This is what I get for pampering myself with high-level programming languages.
I have a function which writes a 32-bit value to a buffer, and a uint64_t on the stack. Is the following code a sane ...
0
votes
2answers
1k views
hibernate column uniqueness question
I'm still in the process of learning hibernate/hql and I have a question that's half best practices question/half sanity check.
Let's say I have a class A:
@Entity
public class A
{
@Id ...
0
votes
3answers
54 views
Is this set of time constants correct or is there a better built-in source in Cocoa
For working with time interval calculations on iPhone and looking at some component values.
#define kSecondsInYear 31556926
#define kSecondsInMonth 2629744
#define kSecondsInDay 86400
#define ...
0
votes
2answers
742 views
java.sql.SQLException: [BEA][Oracle JDBC Driver][Oracle]ORA-01438: value larger than specified precision allows for this column
I'm getting this error message in production.
Unfortunately this comes from a purchased application and the support process is not precisely fast.
This happens when data is being copied from one ...