An exit code is signaled by a program on termination to indicate if it completed successfully, or, if it did not, what sort of failure condition occurred.

learn more… | top users | synonyms

0
votes
3answers
31 views

Bash shell: How to test for failure of mkdir?

I'm writing a Bash shell script and want to do robust error checking. The exit status code for 'mv' to make it file is easy to test, by just trying to move a file you know doesn't exist. I have to ...
0
votes
3answers
18 views

Not able to force exit on Jenkins Build

I've been having a lot of trouble with this so here goes. I have a Jenkins build that executes the following shell script: #!/bin/sh -x if [ 'grep -c "It misses" log' -gt 0 ]; then exit 1; fi I ...
0
votes
0answers
44 views

FFmpeg into Qt 5.0.2: exit code -1073741515 on av_register_all();

I am attempting to integrate FFmpeg into my Qt app. I used the FFmpeg git-0fb64da 64-bit Dev source from Zeranoe FFmpeg builds page and added avformat.lib to my project. My .pro file: unix|win32: ...
0
votes
0answers
32 views

Return exit code from 7z sfx archive

I've created an sfx archive using 7z. The config text file is: ;!@Install@!UTF-8! GUIMode="2" ExecuteFile="test.exe" ;!@InstallEnd@! By default, the sfx archive's exit code is based to whether or ...
1
vote
2answers
53 views

Why are Batch exit codes mangled when returned to PowerShell?

Running this code inside of powershell gives strange results: PS> .\test.bat; $lastexitcode >exit /b 0 2 PS> cmd /c exit /b 0; $lastexitcode 0 Can someone explain how to correct the batch ...
0
votes
2answers
40 views

exec Exit Code Meaning for 11

I'm using the following code on a linux web server $error = exec('phantomjs table1.js', $op, $code); echo $code; // prints 11 on screen table1.js var page = require('webpage').create(); var url ...
2
votes
3answers
38 views

Exit with error message in PHP/HTML

I am checking if a particular value is set using isset. I want to quit the HTML with displaying error message like "name not found , Enter a valid name". Currently I am checking like if ((! ...
3
votes
1answer
88 views

There's “0 but true”, but is there “42 but false” in perl?

As per the question. I know there's "0 but true" which is true in a boolean context but false otherwise, but can return something false in a boolean context but with a non-zero value (the obvious ...
1
vote
0answers
43 views

Visual Studio pre-build event; Checking exit code for each event

I have a solution with multiple projects. One project only needs to build if both two events, in the pre-build event, exit with error code 0. So I thought I could do the following: ...
0
votes
1answer
39 views

What causes the exit status to change for the same command even when the output is identical?

In the below code, I am trying to check if the command within the if condition completed successfully and that the data was pushed into the target file temp.txt. Consider: #!/usr/bin/ksh A=4 B=1 ...
0
votes
1answer
48 views

wsadmin jython script exit code to calling script

I am writing batch and bash scripts to automate some websphere tasks. I need to get the exit code of myscipt.jy back to the calling script, jython script #----------myscipt.jy----------- #I am ...
0
votes
1answer
46 views

SpecRun returning exit code 120 with @ignore tests

Running SpecRun from command line as part of a Continuous Integration setup, and recently an ignored (@ignore) test generated an exit code of 120 when SpecRun completed. Currently, we break the build ...
1
vote
2answers
128 views

Python - Capture exit status of command executed via SSH

I need a way to capture exit status from a command run through SSH. Would like the exit status to end up within a variable. I cannot seem to get it working though. Command would be something simple ...
2
votes
1answer
300 views

Why are my powershell exit codes always “0”?

I've got a powershell script as follows ##teamcity[progressMessage 'Beginning build'] # If the build computer is not running the appropriate version of .NET, then the build will not run. Throw an ...
-1
votes
1answer
20 views

Checking result of $(MAKE) in a makefile

I'm using a Makefile to compile my project. I get to a point which is: $(MAKE) <some flags>; \ $(UPLOAD_SCRIPT) The $(MAKE) line actually compiles the code, but I only want the upload script ...
1
vote
1answer
48 views

Getting Overflow Error at running .NET application from VBA with WshShell

Why am I getting Error 6: Overflow at starting my .NET application (QCSearch.exe) with the following code: Private Sub StartQCSearch() Dim wsh As WshShell Dim waitOnReturn As Boolean: ...
2
votes
1answer
79 views

MySQL not catching error

Why is this code not catching the error when I try to delete a row that doesn't exist? No matter what parameter I pass in as the name of the row, it always returns "1 row deleted" and doesn't use the ...
0
votes
1answer
64 views

Use PHP and Windows Task Scheduler to try again on exit(1)

I use windows task scheduler to start up a php script that works perfectly fine. Basically C:\php.exe -f C:\myscript.php In my script some work happens that sometimes makes me want to run the task ...
0
votes
1answer
36 views

How does android handle the +-sign in a phonenumber

I'm trying to call a calling card through code and want to send the following uri to the intent: accessnumber+pause+phonenumber+# The phonenumber comes from the addresslist, but how do I handle the ...
1
vote
3answers
77 views

Memory leaks occur if exit(exitcode) in C? [duplicate]

In C program, if there are dynamically allocated memories remained not freed after the execution of the program exit with exit(100);, do we get memory leaks problem? For example: int main (void) { ...
3
votes
2answers
138 views

Bash: One-liner to exit with the opposite status of a grep command?

How can I reduce the following bash script? grep -P "STATUS: (?!Perfect)" recess.txt && exit 1 exit 0 It seems like I should be able to do it with a single command, but I have a total of 3 ...
1
vote
1answer
773 views

eclipse installed but cannot start java returned exit-code = 1

I recently installed eclipse-dsl-juno-SR1-win32-x86_64 and after extracting the files, as I started running Eclipse it gave me the following error : Java was started but returned exit code=1 ...
0
votes
1answer
113 views

Unix return code changes after sleep command

stop() { sh stop.sh ret_code=$? <1>echo ret_code is $ret_code } once=true while $once do stop & PID=$! <2>echo ret_code is $ret_code sleep 2m <3>echo ret_code is $ret_code if [ ...
4
votes
2answers
244 views

How to set ExitCode in a VCL Forms Application

I can't get ExitCode to work for a VCL forms application. Here is my test application. It was created from the File / New menu in the Delphi 2007 IDE. The only change is that I added the line ExitCode ...
0
votes
1answer
146 views

How to capture the exit_code and stderr of the command that is run in C++?

I'm writing a c++ program that executes and outputs (in real-time) a shell script, makefile or just another program. However I would like to have my program return differently when there are errors or ...
0
votes
0answers
54 views

Return Custom Silverlight OOB Application ExitCode

I would like to customize the exit code of my elevated trust, Out of Browser (OOB) Silverlight 4 application. I'm currently attempting to use the System.Environment.ExitCode property to customize the ...
0
votes
3answers
89 views

Writing exit code of shell script into a file

I have a shell script, which runs a tool. What I want is, the exit code of this shell script should be written in a .XMLfile. What I have done so far # command1 # command2 echo "<status>" ...
0
votes
1answer
152 views

Exit code of a sourced shell script

Shell scripts can be sourced, i.e. executed in the current shell, like . ~/some_script.sh but they can also be invoked via a subshell, e.g. /bin/bash ~/another_script.sh Writing one script I was ...
0
votes
0answers
551 views

app crash: shows low memory, but cannot understand crash

The following is a crash report that i am getting on opening a screen that has a gallery view with some images to be shown. I am able to load the table view also, but after that it crashes with the ...
2
votes
2answers
602 views

Perl Script return value in DOS batch file

I have a DOS batch file that calls a Perl Script file: ssutexec.pl prog=MyProg I_CARD=MyCard O_F071=ME007 F70P=MYF70P TRIG=MYTRIG set status=%errorlevel% if NOT %status% == 0 ( echo ...
0
votes
1answer
142 views

Why do Python subprocesses on a CGI script have different exit status according to how they are run?

I am trying to run shell commands from Python on the CGI script below. Can someone explain to me why exit_status is 0 when I execute the script on the shell, while exit_status is 127 when I run it ...
1
vote
1answer
155 views

Python returns “wrong” exit code

My goal is to execute a python script (that executs some unittests) via a small *.bat script. The *.bat script should also receive the exit status of the python script. But it seems that the exit ...
2
votes
1answer
187 views

c++ “system” call doesn't doesn't return the proper exit code

I have the following C++ code ... int res = system("python myscript.py"); if(res != 0){ cerr << "Exit code was:" << res << endl; } The python script file ends with print ...
0
votes
0answers
85 views

get the bash exit command out of gnome-terminal

from bash, I'd like to kick off a new process in a new terminal, wait till it finishes, and then recover the exit code. for example, I'd like to do something like this, but actually recover the ...
1
vote
2answers
351 views

Jenkins job to kill process (Tomcat) over ssh

I am using a Jenkins job to run a few simple shell commands (over ssh, via the Jenkins SSH Plugin); the commands are supposed to shut down a running Tomcat server: sudo /opt/tomcat/bin/catalina.sh ...
0
votes
1answer
1k views

Xcode 4.5 // clang: error: linker command failed with exit code 1 (use -v to see invocation)

Good Evening, while testing my Project "Falling Piano" in Xcode 4.5 the following error occurred: Ld ...
4
votes
4answers
196 views

Why do we have exit codes in Java?

In Java, we use System.exit(int) to exit the program. The reason for an "exit value" in C was that the exit value was used to check for errors in a program. But in Java, errors are reflected by an ...
2
votes
3answers
70 views

Printing different messages by command exit code

So I have this in my .sh file: #!/bin/bash echo "Building Space Cubes X for Mac...." make OS=APPLE -k if [$? -eq 0] then echo "Build completed." echo "You can find the build under ...
-1
votes
1answer
220 views

How can I propagate an exit status from Expect to its parent Bash script?

I have a bash script, exec.sh like some command expect test.exp continue other command in the test.exp file, I have a snippet like: while {[gets $cmds command]>=0} { send "$command\r" ...
0
votes
1answer
152 views

delayed_job - handling job return value

I am using delayed_job to perform a system call. This system call invokes a Groovy script. class Job def perform command "groovy file.groovy" system command end def ...
0
votes
1answer
467 views

ios - “libtool failed with exit code 1” after a clean

I was working on a project and all were going well until I decide to clean my project. The following errors appears only when I run my app on simulator (working fine on a real device) : Libtool ...
0
votes
1answer
212 views

513 Error Code (exit code) FxCop using C#

I have VS2010, Windows 7 bits, FxCop 10.0 I execute Fxcopcmd.exe using Process.Start, and I get 513 "exitcode" (error code) value. Todd King in below reference says: In this case an exit code of ...
0
votes
1answer
230 views

phantom.exit(-1) doesn't work when called from another function

I'm using PhantomJS to run JavaScript. There's a function phantom.exit() that accepts exit code as 1st argument. Here's how it works... var page = require("webpage").create(), $ = ...
1
vote
2answers
69 views

Elegant way to check whether external long-term jar launched successfully

I am trying to execute external jar from java app. What is the most elegant way to check if the process has been started successfully and running? ExtApp.jar is long-term running process, so I can ...
1
vote
2answers
108 views

Shell equivalent of Perl's die

Is there a shell equivalent (in either bash or zsh) of Perl's die function? I want to set the exit code and print a message in a single line. I know I can make my own simple function but I'm kind of ...
0
votes
0answers
304 views

Hadoop mapreduce program fails with exitcode 127

I am new to Hadoop and i am trying to run a sample program. I see NameNode, Datanode, Yarn cluster URL up and running. i.e. 127.0.0.1:50070 /dfshealth.jsp, localhost:8088 /cluster/cluster, etc But ...
-1
votes
2answers
401 views

Application.Exit() - application still running after closing form

I have a game application in which when the game form is closed, a main menu always pops up.. therefore, all the application is supposed to stop running when a user closes the main menu form. I am ...
0
votes
2answers
105 views

Can I Use the Exit(0) function on IOS when i have no Internet Connection and pass Appstore Test

My App relay heavily on server data, when i have no connection to my server i cant present any data. so i present to the user a screen explaining him the no connection situation and give him a button ...
2
votes
3answers
274 views

Return code for POSIX signals that cannot be handled

This is regarding the application that runs on POSIX (Linux) environment. Most signals (e.g. Ctrl+C - signal 2, SIGINT), and few others are handled. When that is done the exit() system call is called ...
0
votes
1answer
256 views

How to persist IsolatedStorageSettings after terminate the application

How to retain the saved isolatedstoragesettings while at application launch I used exception for termination on backevents : protected void _BackKeyPress(object sender, CancelEventArgs e) { ...

1 2 3 4 5