From fa9e9d32039d787358a9d6d31e0abf0162562694 Mon Sep 17 00:00:00 2001 From: David Fugate Date: Fri, 3 Feb 2012 15:21:45 -0800 Subject: Fixed test case paths. --- test/suite/bestPractice/Sbp_7.9_A9_T3.js | 2 +- test/suite/bestPractice/Sbp_7.9_A9_T4.js | 2 +- test/suite/ch13/13.0/S13_A1.js | 2 +- test/suite/ch13/13.0/S13_A10.js | 2 +- test/suite/ch13/13.0/S13_A11_T1.js | 2 +- test/suite/ch13/13.0/S13_A11_T2.js | 2 +- test/suite/ch13/13.0/S13_A11_T3.js | 2 +- test/suite/ch13/13.0/S13_A11_T4.js | 2 +- test/suite/ch13/13.0/S13_A12_T1.js | 2 +- test/suite/ch13/13.0/S13_A12_T2.js | 2 +- test/suite/ch13/13.0/S13_A13_T1.js | 2 +- test/suite/ch13/13.0/S13_A13_T2.js | 2 +- test/suite/ch13/13.0/S13_A13_T3.js | 2 +- test/suite/ch13/13.0/S13_A14.js | 2 +- test/suite/ch13/13.0/S13_A15_T1.js | 2 +- test/suite/ch13/13.0/S13_A15_T2.js | 2 +- test/suite/ch13/13.0/S13_A15_T3.js | 2 +- test/suite/ch13/13.0/S13_A15_T4.js | 2 +- test/suite/ch13/13.0/S13_A15_T5.js | 2 +- test/suite/ch13/13.0/S13_A16.js | 2 +- test/suite/ch13/13.0/S13_A17_T1.js | 2 +- test/suite/ch13/13.0/S13_A17_T2.js | 2 +- test/suite/ch13/13.0/S13_A18.js | 2 +- test/suite/ch13/13.0/S13_A19_T1.js | 2 +- test/suite/ch13/13.0/S13_A19_T2.js | 2 +- test/suite/ch13/13.0/S13_A2_T1.js | 2 +- test/suite/ch13/13.0/S13_A2_T2.js | 2 +- test/suite/ch13/13.0/S13_A2_T3.js | 2 +- test/suite/ch13/13.0/S13_A3_T1.js | 2 +- test/suite/ch13/13.0/S13_A3_T2.js | 2 +- test/suite/ch13/13.0/S13_A3_T3.js | 2 +- test/suite/ch13/13.0/S13_A4_T1.js | 2 +- test/suite/ch13/13.0/S13_A4_T2.js | 2 +- test/suite/ch13/13.0/S13_A4_T3.js | 2 +- test/suite/ch13/13.0/S13_A4_T4.js | 2 +- test/suite/ch13/13.0/S13_A6_T1.js | 2 +- test/suite/ch13/13.0/S13_A6_T2.js | 2 +- test/suite/ch13/13.0/S13_A7_T1.js | 2 +- test/suite/ch13/13.0/S13_A7_T2.js | 2 +- test/suite/ch13/13.0/S13_A7_T3.js | 2 +- test/suite/ch13/13.0/S13_A8_T1.js | 2 +- test/suite/ch13/13.0/S13_A8_T2.js | 2 +- test/suite/ch13/13.0/S13_A9.js | 2 +- test/suite/ch14/14.0/S14_A1.js | 2 +- test/suite/ch14/14.0/S14_A2.js | 2 +- test/suite/ch14/14.0/S14_A3.js | 2 +- test/suite/ch14/14.0/S14_A5_T1.js | 2 +- test/suite/ch14/14.0/S14_A5_T2.js | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) (limited to 'test') diff --git a/test/suite/bestPractice/Sbp_7.9_A9_T3.js b/test/suite/bestPractice/Sbp_7.9_A9_T3.js index 509cd88b4..4a0eb188f 100644 --- a/test/suite/bestPractice/Sbp_7.9_A9_T3.js +++ b/test/suite/bestPractice/Sbp_7.9_A9_T3.js @@ -4,7 +4,7 @@ /** * Check Do-While Statement for automatic semicolon insertion * - * @path ch07/7.9/S7.9_A9_T3.js + * @path bestPractice/Sbp_7.9_A9_T3.js * @description Execute do { \n ; \n }while(false) true */ diff --git a/test/suite/bestPractice/Sbp_7.9_A9_T4.js b/test/suite/bestPractice/Sbp_7.9_A9_T4.js index 3992e7e39..76f3f6b3a 100644 --- a/test/suite/bestPractice/Sbp_7.9_A9_T4.js +++ b/test/suite/bestPractice/Sbp_7.9_A9_T4.js @@ -4,7 +4,7 @@ /** * Check Do-While Statement for automatic semicolon insertion * - * @path ch07/7.9/S7.9_A9_T4.js + * @path bestPractice/Sbp_7.9_A9_T4.js * @description Execute do ; while \n (false) true */ diff --git a/test/suite/ch13/13.0/S13_A1.js b/test/suite/ch13/13.0/S13_A1.js index fdd4e020f..8d0a905af 100644 --- a/test/suite/ch13/13.0/S13_A1.js +++ b/test/suite/ch13/13.0/S13_A1.js @@ -4,7 +4,7 @@ /** * "x=function y(){}" statement does not store a reference to the new function in the varaible y(Identifier) * - * @path ch13/S13_A1.js + * @path ch13/13.0/S13_A1.js * @description Checking the type of y */ diff --git a/test/suite/ch13/13.0/S13_A10.js b/test/suite/ch13/13.0/S13_A10.js index 99525bf52..dd85f242b 100644 --- a/test/suite/ch13/13.0/S13_A10.js +++ b/test/suite/ch13/13.0/S13_A10.js @@ -4,7 +4,7 @@ /** * Function is a data * - * @path ch13/S13_A10.js + * @path ch13/13.0/S13_A10.js * @description Using function as a property of an object */ diff --git a/test/suite/ch13/13.0/S13_A11_T1.js b/test/suite/ch13/13.0/S13_A11_T1.js index 4c082a712..e9dc0e39a 100644 --- a/test/suite/ch13/13.0/S13_A11_T1.js +++ b/test/suite/ch13/13.0/S13_A11_T1.js @@ -4,7 +4,7 @@ /** * Since arguments property has attribute { DontDelete }, only its elements can be deleted * - * @path ch13/S13_A11_T1.js + * @path ch13/13.0/S13_A11_T1.js * @description Returning result of "delete arguments" */ diff --git a/test/suite/ch13/13.0/S13_A11_T2.js b/test/suite/ch13/13.0/S13_A11_T2.js index d97dfe039..18886a307 100644 --- a/test/suite/ch13/13.0/S13_A11_T2.js +++ b/test/suite/ch13/13.0/S13_A11_T2.js @@ -4,7 +4,7 @@ /** * Since arguments property has attribute { DontDelete }, only its elements can be deleted * - * @path ch13/S13_A11_T2.js + * @path ch13/13.0/S13_A11_T2.js * @description Checking if deleting the arguments property fails and then returning it */ diff --git a/test/suite/ch13/13.0/S13_A11_T3.js b/test/suite/ch13/13.0/S13_A11_T3.js index a6be104c7..94345da8f 100644 --- a/test/suite/ch13/13.0/S13_A11_T3.js +++ b/test/suite/ch13/13.0/S13_A11_T3.js @@ -4,7 +4,7 @@ /** * Since arguments property has attribute { DontDelete }, only its elements can be deleted * - * @path ch13/S13_A11_T3.js + * @path ch13/13.0/S13_A11_T3.js * @description Deleting arguments[i] and returning result of the operation */ diff --git a/test/suite/ch13/13.0/S13_A11_T4.js b/test/suite/ch13/13.0/S13_A11_T4.js index 009bf846f..c107879cd 100644 --- a/test/suite/ch13/13.0/S13_A11_T4.js +++ b/test/suite/ch13/13.0/S13_A11_T4.js @@ -4,7 +4,7 @@ /** * Since arguments property has attribute { DontDelete }, only its elements can be deleted * - * @path ch13/S13_A11_T4.js + * @path ch13/13.0/S13_A11_T4.js * @description Deleting arguments[i] and checking the type of arguments[i] */ diff --git a/test/suite/ch13/13.0/S13_A12_T1.js b/test/suite/ch13/13.0/S13_A12_T1.js index caafdfc87..278a46ac6 100644 --- a/test/suite/ch13/13.0/S13_A12_T1.js +++ b/test/suite/ch13/13.0/S13_A12_T1.js @@ -4,7 +4,7 @@ /** * Function declarations in global or function scope are {DontDelete} * - * @path ch13/S13_A12_T1.js + * @path ch13/13.0/S13_A12_T1.js * @description Checking if deleting a function that is declared in global scope fails */ diff --git a/test/suite/ch13/13.0/S13_A12_T2.js b/test/suite/ch13/13.0/S13_A12_T2.js index 47f7d2152..08ea18247 100644 --- a/test/suite/ch13/13.0/S13_A12_T2.js +++ b/test/suite/ch13/13.0/S13_A12_T2.js @@ -4,7 +4,7 @@ /** * Function declarations in global or function scope are {DontDelete} * - * @path ch13/S13_A12_T2.js + * @path ch13/13.0/S13_A12_T2.js * @description Checking if deleting a function that is declared in function scope fails */ diff --git a/test/suite/ch13/13.0/S13_A13_T1.js b/test/suite/ch13/13.0/S13_A13_T1.js index dc4c3ba64..072966196 100644 --- a/test/suite/ch13/13.0/S13_A13_T1.js +++ b/test/suite/ch13/13.0/S13_A13_T1.js @@ -4,7 +4,7 @@ /** * Deleting arguments[i] leads to breaking the connection to local reference * - * @path ch13/S13_A13_T1.js + * @path ch13/13.0/S13_A13_T1.js * @description Deleting arguments[i] */ diff --git a/test/suite/ch13/13.0/S13_A13_T2.js b/test/suite/ch13/13.0/S13_A13_T2.js index 359eaf9f4..49ba62ada 100644 --- a/test/suite/ch13/13.0/S13_A13_T2.js +++ b/test/suite/ch13/13.0/S13_A13_T2.js @@ -4,7 +4,7 @@ /** * Deleting arguments[i] leads to breaking the connection to local reference * - * @path ch13/S13_A13_T2.js + * @path ch13/13.0/S13_A13_T2.js * @description Changing arguments value and then deleting the argument */ diff --git a/test/suite/ch13/13.0/S13_A13_T3.js b/test/suite/ch13/13.0/S13_A13_T3.js index 84dd5ea1e..715150018 100644 --- a/test/suite/ch13/13.0/S13_A13_T3.js +++ b/test/suite/ch13/13.0/S13_A13_T3.js @@ -4,7 +4,7 @@ /** * Deleting arguments[i] leads to breaking the connection to local reference * - * @path ch13/S13_A13_T3.js + * @path ch13/13.0/S13_A13_T3.js * @description Changing argument value, deleting the argument and then defining a new value for arguments[i] */ diff --git a/test/suite/ch13/13.0/S13_A14.js b/test/suite/ch13/13.0/S13_A14.js index 31a63313b..7d5bc732f 100644 --- a/test/suite/ch13/13.0/S13_A14.js +++ b/test/suite/ch13/13.0/S13_A14.js @@ -4,7 +4,7 @@ /** * Unicode symbols in function name are allowed * - * @path ch13/S13_A14.js + * @path ch13/13.0/S13_A14.js * @description Defining function name with unicode symbols */ diff --git a/test/suite/ch13/13.0/S13_A15_T1.js b/test/suite/ch13/13.0/S13_A15_T1.js index c4862b38e..74531f8c5 100644 --- a/test/suite/ch13/13.0/S13_A15_T1.js +++ b/test/suite/ch13/13.0/S13_A15_T1.js @@ -4,7 +4,7 @@ /** * ''arguments'' variable overrides ActivationObject.arguments * - * @path ch13/S13_A15_T1.js + * @path ch13/13.0/S13_A15_T1.js * @description Declaring a function with "__func(arguments)" */ diff --git a/test/suite/ch13/13.0/S13_A15_T2.js b/test/suite/ch13/13.0/S13_A15_T2.js index ec82748be..77e7c847b 100644 --- a/test/suite/ch13/13.0/S13_A15_T2.js +++ b/test/suite/ch13/13.0/S13_A15_T2.js @@ -4,7 +4,7 @@ /** * ''arguments'' variable overrides ActivationObject.arguments * - * @path ch13/S13_A15_T2.js + * @path ch13/13.0/S13_A15_T2.js * @description Overriding arguments within functions body */ diff --git a/test/suite/ch13/13.0/S13_A15_T3.js b/test/suite/ch13/13.0/S13_A15_T3.js index ef625d881..4ba50e717 100644 --- a/test/suite/ch13/13.0/S13_A15_T3.js +++ b/test/suite/ch13/13.0/S13_A15_T3.js @@ -4,7 +4,7 @@ /** * ''arguments'' variable overrides ActivationObject.arguments * - * @path ch13/S13_A15_T3.js + * @path ch13/13.0/S13_A15_T3.js * @description Declaring a variable named with "arguments" without a function */ diff --git a/test/suite/ch13/13.0/S13_A15_T4.js b/test/suite/ch13/13.0/S13_A15_T4.js index e33c5ca14..a71b34833 100644 --- a/test/suite/ch13/13.0/S13_A15_T4.js +++ b/test/suite/ch13/13.0/S13_A15_T4.js @@ -4,7 +4,7 @@ /** * ''arguments'' variable overrides ActivationObject.arguments * - * @path ch13/S13_A15_T4.js + * @path ch13/13.0/S13_A15_T4.js * @description Declaring a variable named with "arguments" and following a "return" statement within a function body */ diff --git a/test/suite/ch13/13.0/S13_A15_T5.js b/test/suite/ch13/13.0/S13_A15_T5.js index 3ea179277..4896a19c2 100644 --- a/test/suite/ch13/13.0/S13_A15_T5.js +++ b/test/suite/ch13/13.0/S13_A15_T5.js @@ -4,7 +4,7 @@ /** * ''arguments'' variable overrides ActivationObject.arguments * - * @path ch13/S13_A15_T5.js + * @path ch13/13.0/S13_A15_T5.js * @description Creating a variable named with "arguments" without a function */ diff --git a/test/suite/ch13/13.0/S13_A16.js b/test/suite/ch13/13.0/S13_A16.js index 6d2e9cec5..8b8ee7080 100644 --- a/test/suite/ch13/13.0/S13_A16.js +++ b/test/suite/ch13/13.0/S13_A16.js @@ -4,7 +4,7 @@ /** * Any separators are admitted between declaration chunks * - * @path ch13/S13_A16.js + * @path ch13/13.0/S13_A16.js * @description Inserting separators between declaration chunks */ diff --git a/test/suite/ch13/13.0/S13_A17_T1.js b/test/suite/ch13/13.0/S13_A17_T1.js index 935c419c9..1ea6c287a 100644 --- a/test/suite/ch13/13.0/S13_A17_T1.js +++ b/test/suite/ch13/13.0/S13_A17_T1.js @@ -4,7 +4,7 @@ /** * Function call cannot appear in the program before the FunctionExpression appears * - * @path ch13/S13_A17_T1.js + * @path ch13/13.0/S13_A17_T1.js * @description Trying to call a function before the FunctionExpression appears */ diff --git a/test/suite/ch13/13.0/S13_A17_T2.js b/test/suite/ch13/13.0/S13_A17_T2.js index b3224d851..d502d3b46 100644 --- a/test/suite/ch13/13.0/S13_A17_T2.js +++ b/test/suite/ch13/13.0/S13_A17_T2.js @@ -4,7 +4,7 @@ /** * Function call cannot appear in the program before the FunctionExpression appears * - * @path ch13/S13_A17_T2.js + * @path ch13/13.0/S13_A17_T2.js * @description Trying to call a function before the FunctionExpression appears and then using the FunctionExpression one more time */ diff --git a/test/suite/ch13/13.0/S13_A18.js b/test/suite/ch13/13.0/S13_A18.js index 1b4057d7b..827db7547 100644 --- a/test/suite/ch13/13.0/S13_A18.js +++ b/test/suite/ch13/13.0/S13_A18.js @@ -4,7 +4,7 @@ /** * Closures are admitted * - * @path ch13/S13_A18.js + * @path ch13/13.0/S13_A18.js * @description Using a function declaration as a function parameter */ diff --git a/test/suite/ch13/13.0/S13_A19_T1.js b/test/suite/ch13/13.0/S13_A19_T1.js index 06c68ba7d..9bcf1921f 100644 --- a/test/suite/ch13/13.0/S13_A19_T1.js +++ b/test/suite/ch13/13.0/S13_A19_T1.js @@ -4,7 +4,7 @@ /** * "var" does not override function declaration * - * @path ch13/S13_A19_T1.js + * @path ch13/13.0/S13_A19_T1.js * @description Creating a function and a variable with identical Identifiers in global scope */ diff --git a/test/suite/ch13/13.0/S13_A19_T2.js b/test/suite/ch13/13.0/S13_A19_T2.js index fdc1b7619..7757d8be6 100644 --- a/test/suite/ch13/13.0/S13_A19_T2.js +++ b/test/suite/ch13/13.0/S13_A19_T2.js @@ -4,7 +4,7 @@ /** * "var" does not override function declaration * - * @path ch13/S13_A19_T2.js + * @path ch13/13.0/S13_A19_T2.js * @description Creating a function and a variable with identical Identifiers within function scope */ diff --git a/test/suite/ch13/13.0/S13_A2_T1.js b/test/suite/ch13/13.0/S13_A2_T1.js index 4a08e96c5..b9307ac70 100644 --- a/test/suite/ch13/13.0/S13_A2_T1.js +++ b/test/suite/ch13/13.0/S13_A2_T1.js @@ -4,7 +4,7 @@ /** * function must be evaluated inside the expression * - * @path ch13/S13_A2_T1.js + * @path ch13/13.0/S13_A2_T1.js * @description Defining function body with "return arg" */ diff --git a/test/suite/ch13/13.0/S13_A2_T2.js b/test/suite/ch13/13.0/S13_A2_T2.js index 3d84a168e..c43c58e79 100644 --- a/test/suite/ch13/13.0/S13_A2_T2.js +++ b/test/suite/ch13/13.0/S13_A2_T2.js @@ -4,7 +4,7 @@ /** * function must be evaluated inside the expression * - * @path ch13/S13_A2_T2.js + * @path ch13/13.0/S13_A2_T2.js * @description Defining function body with "return arg + arguments[1]" */ diff --git a/test/suite/ch13/13.0/S13_A2_T3.js b/test/suite/ch13/13.0/S13_A2_T3.js index 7255ab039..83d3f2463 100644 --- a/test/suite/ch13/13.0/S13_A2_T3.js +++ b/test/suite/ch13/13.0/S13_A2_T3.js @@ -4,7 +4,7 @@ /** * function must be evaluated inside the expression * - * @path ch13/S13_A2_T3.js + * @path ch13/13.0/S13_A2_T3.js * @description Defining function body with "return arguments[0] +"-"+ arguments[1]" */ diff --git a/test/suite/ch13/13.0/S13_A3_T1.js b/test/suite/ch13/13.0/S13_A3_T1.js index 7b4d3df15..cac7e243d 100644 --- a/test/suite/ch13/13.0/S13_A3_T1.js +++ b/test/suite/ch13/13.0/S13_A3_T1.js @@ -4,7 +4,7 @@ /** * The Identifier in a FunctionExpression can be referenced from inside the FunctionExpression's FunctionBody to allow the function calling itself recursively * - * @path ch13/S13_A3_T1.js + * @path ch13/13.0/S13_A3_T1.js * @description Creating a recursive function that calculates factorial, as a variable. * Function call itself by it`s name */ diff --git a/test/suite/ch13/13.0/S13_A3_T2.js b/test/suite/ch13/13.0/S13_A3_T2.js index 51f35cc67..2137666a7 100644 --- a/test/suite/ch13/13.0/S13_A3_T2.js +++ b/test/suite/ch13/13.0/S13_A3_T2.js @@ -4,7 +4,7 @@ /** * The Identifier in a FunctionExpression can be referenced from inside the FunctionExpression's FunctionBody to allow the function calling itself recursively * - * @path ch13/S13_A3_T2.js + * @path ch13/13.0/S13_A3_T2.js * @description Creating a recursive function that calculates factorial, as a variable. * Function calls itself by the name of the variable */ diff --git a/test/suite/ch13/13.0/S13_A3_T3.js b/test/suite/ch13/13.0/S13_A3_T3.js index 4c5b4b60d..467f3fea5 100644 --- a/test/suite/ch13/13.0/S13_A3_T3.js +++ b/test/suite/ch13/13.0/S13_A3_T3.js @@ -4,7 +4,7 @@ /** * The Identifier in a FunctionExpression can be referenced from inside the FunctionExpression's FunctionBody to allow the function calling itself recursively * - * @path ch13/S13_A3_T3.js + * @path ch13/13.0/S13_A3_T3.js * @description Creating simple recursive function that calculates factorial */ diff --git a/test/suite/ch13/13.0/S13_A4_T1.js b/test/suite/ch13/13.0/S13_A4_T1.js index 119499e03..453207158 100644 --- a/test/suite/ch13/13.0/S13_A4_T1.js +++ b/test/suite/ch13/13.0/S13_A4_T1.js @@ -4,7 +4,7 @@ /** * The production FunctionDeclaration: "function Identifier ( FormalParameterList_opt ) { FunctionBody }" is processed by function declarations * - * @path ch13/S13_A4_T1.js + * @path ch13/13.0/S13_A4_T1.js * @description Declaring a function that returns string */ diff --git a/test/suite/ch13/13.0/S13_A4_T2.js b/test/suite/ch13/13.0/S13_A4_T2.js index 3a0f9616e..d7b4a2788 100644 --- a/test/suite/ch13/13.0/S13_A4_T2.js +++ b/test/suite/ch13/13.0/S13_A4_T2.js @@ -4,7 +4,7 @@ /** * The production FunctionDeclaration: "function Identifier ( FormalParameterList_opt ) { FunctionBody }" is processed by function declarations * - * @path ch13/S13_A4_T2.js + * @path ch13/13.0/S13_A4_T2.js * @description Declaring a function that uses prefix increment operator within its "return" Expression */ diff --git a/test/suite/ch13/13.0/S13_A4_T3.js b/test/suite/ch13/13.0/S13_A4_T3.js index 9ef426163..6595f4f77 100644 --- a/test/suite/ch13/13.0/S13_A4_T3.js +++ b/test/suite/ch13/13.0/S13_A4_T3.js @@ -4,7 +4,7 @@ /** * The production FunctionDeclaration: "function Identifier ( FormalParameterList_opt ) { FunctionBody }" is processed by function declarations * - * @path ch13/S13_A4_T3.js + * @path ch13/13.0/S13_A4_T3.js * @description Declaring a function that uses arithmetical operators within its "return" Expression */ diff --git a/test/suite/ch13/13.0/S13_A4_T4.js b/test/suite/ch13/13.0/S13_A4_T4.js index e16e97b71..7330bd80f 100644 --- a/test/suite/ch13/13.0/S13_A4_T4.js +++ b/test/suite/ch13/13.0/S13_A4_T4.js @@ -4,7 +4,7 @@ /** * The production FunctionDeclaration: "function Identifier ( FormalParameterList_opt ) { FunctionBody }" is processed by function declarations * - * @path ch13/S13_A4_T4.js + * @path ch13/13.0/S13_A4_T4.js * @description Declaring a function that uses strings concatenaion opeator within its "return" Expression */ diff --git a/test/suite/ch13/13.0/S13_A6_T1.js b/test/suite/ch13/13.0/S13_A6_T1.js index 90c400d70..2cdd53709 100644 --- a/test/suite/ch13/13.0/S13_A6_T1.js +++ b/test/suite/ch13/13.0/S13_A6_T1.js @@ -4,7 +4,7 @@ /** * FunctionDeclaration can be overrided by other FunctionDeclaration with the same Identifier * - * @path ch13/S13_A6_T1.js + * @path ch13/13.0/S13_A6_T1.js * @description Duplicating function declaration */ diff --git a/test/suite/ch13/13.0/S13_A6_T2.js b/test/suite/ch13/13.0/S13_A6_T2.js index e20659136..6268e06e2 100644 --- a/test/suite/ch13/13.0/S13_A6_T2.js +++ b/test/suite/ch13/13.0/S13_A6_T2.js @@ -4,7 +4,7 @@ /** * FunctionDeclaration can be overrided by other FunctionDeclaration with the same Identifier * - * @path ch13/S13_A6_T2.js + * @path ch13/13.0/S13_A6_T2.js * @description Calling a function before it is declared one more time */ diff --git a/test/suite/ch13/13.0/S13_A7_T1.js b/test/suite/ch13/13.0/S13_A7_T1.js index 774746512..b83e6e140 100644 --- a/test/suite/ch13/13.0/S13_A7_T1.js +++ b/test/suite/ch13/13.0/S13_A7_T1.js @@ -4,7 +4,7 @@ /** * The FunctionBody must be SourceElements * - * @path ch13/S13_A7_T1.js + * @path ch13/13.0/S13_A7_T1.js * @description Using only SourceElements within the FunctionBody */ diff --git a/test/suite/ch13/13.0/S13_A7_T2.js b/test/suite/ch13/13.0/S13_A7_T2.js index c9be672b8..6b381b794 100644 --- a/test/suite/ch13/13.0/S13_A7_T2.js +++ b/test/suite/ch13/13.0/S13_A7_T2.js @@ -4,7 +4,7 @@ /** * The FunctionBody must be SourceElements * - * @path ch13/S13_A7_T2.js + * @path ch13/13.0/S13_A7_T2.js * @description Inserting elements that is different from SourceElements into the FunctionBody */ diff --git a/test/suite/ch13/13.0/S13_A7_T3.js b/test/suite/ch13/13.0/S13_A7_T3.js index ae10085e0..e2b893b65 100644 --- a/test/suite/ch13/13.0/S13_A7_T3.js +++ b/test/suite/ch13/13.0/S13_A7_T3.js @@ -4,7 +4,7 @@ /** * The FunctionBody must be SourceElements * - * @path ch13/S13_A7_T3.js + * @path ch13/13.0/S13_A7_T3.js * @description Checking if execution of "function __func(){\A\B\C}" fails * @negative */ diff --git a/test/suite/ch13/13.0/S13_A8_T1.js b/test/suite/ch13/13.0/S13_A8_T1.js index e5758cf60..d147259ce 100644 --- a/test/suite/ch13/13.0/S13_A8_T1.js +++ b/test/suite/ch13/13.0/S13_A8_T1.js @@ -4,7 +4,7 @@ /** * Arguments property of activation object contains real params to be passed * - * @path ch13/S13_A8_T1.js + * @path ch13/13.0/S13_A8_T1.js * @description Creating a function declared with "function __func(param1, param2, param3)" and using arguments.length property in order to perform the test */ diff --git a/test/suite/ch13/13.0/S13_A8_T2.js b/test/suite/ch13/13.0/S13_A8_T2.js index b947c8054..6e4b3f05c 100644 --- a/test/suite/ch13/13.0/S13_A8_T2.js +++ b/test/suite/ch13/13.0/S13_A8_T2.js @@ -4,7 +4,7 @@ /** * Arguments property of activation object contains real params to be passed * - * @path ch13/S13_A8_T2.js + * @path ch13/13.0/S13_A8_T2.js * @description Creating a function with no parameters and using arguments.length property in order to perform the test */ diff --git a/test/suite/ch13/13.0/S13_A9.js b/test/suite/ch13/13.0/S13_A9.js index 95848bc9d..c13119af9 100644 --- a/test/suite/ch13/13.0/S13_A9.js +++ b/test/suite/ch13/13.0/S13_A9.js @@ -4,7 +4,7 @@ /** * Function can be passed as argument * - * @path ch13/S13_A9.js + * @path ch13/13.0/S13_A9.js * @description Using function as argument of another function */ diff --git a/test/suite/ch14/14.0/S14_A1.js b/test/suite/ch14/14.0/S14_A1.js index f8ae88e0a..302db12dd 100644 --- a/test/suite/ch14/14.0/S14_A1.js +++ b/test/suite/ch14/14.0/S14_A1.js @@ -4,7 +4,7 @@ /** * FunctionExpression must be localed in a reacheable fragment of the program * - * @path ch14/S14_A1.js + * @path ch14/14.0/S14_A1.js * @description Declaring a function within an "if" Expression */ diff --git a/test/suite/ch14/14.0/S14_A2.js b/test/suite/ch14/14.0/S14_A2.js index 1329e7e1b..758e6daf5 100644 --- a/test/suite/ch14/14.0/S14_A2.js +++ b/test/suite/ch14/14.0/S14_A2.js @@ -4,7 +4,7 @@ /** * FunctionDeclaration cannot be localed inside an Expression * - * @path ch14/S14_A2.js + * @path ch14/14.0/S14_A2.js * @description Declaring a function within an "if" Expression */ diff --git a/test/suite/ch14/14.0/S14_A3.js b/test/suite/ch14/14.0/S14_A3.js index 821d944d9..d7dff69a6 100644 --- a/test/suite/ch14/14.0/S14_A3.js +++ b/test/suite/ch14/14.0/S14_A3.js @@ -4,7 +4,7 @@ /** * Global FunctionDeclaration cannot be defined within the body of another FunctionDeclaration * - * @path ch14/S14_A3.js + * @path ch14/14.0/S14_A3.js * @description Declaring a function within the body of another function */ diff --git a/test/suite/ch14/14.0/S14_A5_T1.js b/test/suite/ch14/14.0/S14_A5_T1.js index 20e16e924..499147150 100644 --- a/test/suite/ch14/14.0/S14_A5_T1.js +++ b/test/suite/ch14/14.0/S14_A5_T1.js @@ -4,7 +4,7 @@ /** * The Identifer within a FunctionDeclaration can be written in both letters and unicode * - * @path ch14/S14_A5_T1.js + * @path ch14/14.0/S14_A5_T1.js * @description Declaring a function with "function __\u0066\u0075\u006e\u0063(){return "both"}" */ diff --git a/test/suite/ch14/14.0/S14_A5_T2.js b/test/suite/ch14/14.0/S14_A5_T2.js index 8e99a2ba8..ee3c9d2a3 100644 --- a/test/suite/ch14/14.0/S14_A5_T2.js +++ b/test/suite/ch14/14.0/S14_A5_T2.js @@ -4,7 +4,7 @@ /** * The Identifer within a FunctionDeclaration can be written in both letters and unicode * - * @path ch14/S14_A5_T2.js + * @path ch14/14.0/S14_A5_T2.js * @description Declaring a function with "function \u005f\u005f\u0066\u0075\u006e\u0063(){return "unicode"}" */ -- cgit v1.2.3